40 lines
455 B
CSS
40 lines
455 B
CSS
|
|
:root {
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
background-color: #ffffff;
|
|
}
|
|
|
|
nav {
|
|
min-height: 52px;
|
|
background-color: #f2b916;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
nav a {
|
|
display: flex;
|
|
align-items: center;
|
|
color: #000000;
|
|
padding: 0.4em .9em;
|
|
margin: 0 .35em;
|
|
text-decoration: none;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
nav a:hover {
|
|
background-color: #b38710;
|
|
}
|
|
|
|
main {
|
|
margin: 1em;
|
|
}
|
|
|
|
footer {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|