45 lines
628 B
CSS
45 lines
628 B
CSS
body {
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
}
|
|
|
|
body nav {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 3.5em;
|
|
color: white;
|
|
background-color: black;
|
|
}
|
|
|
|
body nav a {
|
|
position: absolute;
|
|
color: white;
|
|
}
|
|
|
|
body nav a:nth-child(1) {
|
|
padding: 1em;
|
|
}
|
|
|
|
body nav a:nth-child(2) {
|
|
right: 0;
|
|
padding: 1em;
|
|
}
|
|
|
|
body main {
|
|
margin-top: 3.5em;
|
|
margin-bottom: 1em;
|
|
}
|
|
|
|
body footer {
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
background-color: black;
|
|
color: white;
|
|
text-align: center;
|
|
font-size: 12px;
|
|
padding: 2px;
|
|
}
|
|
/*# sourceMappingURL=index.css.map */ |