82 lines
1 KiB
CSS
82 lines
1 KiB
CSS
body {
|
|
margin: 0;
|
|
/*display: flex;
|
|
flex-direction: column;*/
|
|
display: grid;
|
|
min-height: 100vh;
|
|
grid-template-rows: auto 1fr auto;
|
|
}
|
|
|
|
header {
|
|
margin-top: 2em;
|
|
margin-left: 3em;
|
|
}
|
|
|
|
header a {
|
|
color: black;
|
|
}
|
|
|
|
#header-links {
|
|
margin: 2em 0 2em 3em;
|
|
display: flex;
|
|
flex-direction: column;
|
|
grid-column: 1;
|
|
}
|
|
|
|
#header-links a {
|
|
color: black;
|
|
padding: 1em;
|
|
}
|
|
|
|
#header-links a:hover {
|
|
color: white;
|
|
background-color: black;
|
|
}
|
|
|
|
#main {
|
|
margin: 2em 3em 5em 3em;
|
|
}
|
|
|
|
footer {
|
|
background-color: #304B99;
|
|
padding: 1em;
|
|
grid-column: 1/3;
|
|
}
|
|
|
|
#buttons {
|
|
margin-top: 1em;
|
|
}
|
|
|
|
#fsf {
|
|
text-align: right;
|
|
}
|
|
|
|
#footer-main {
|
|
display: grid;
|
|
grid-template-columns: 0.25fr 0.5fr 0.25fr;
|
|
}
|
|
|
|
#footer-text p {
|
|
justify-self: center;
|
|
margin: 0;
|
|
color: white;
|
|
text-align: center;
|
|
}
|
|
|
|
#footer-text a, #footer-text span {
|
|
color: white;
|
|
}
|
|
|
|
#footer-contact {
|
|
padding-top: 1em;
|
|
font-size: 12px;
|
|
}
|
|
|
|
#footer-link-email {
|
|
color: black;
|
|
text-decoration: underline dotted;
|
|
}
|
|
|
|
#buttons {
|
|
text-align: center;
|
|
}
|