68 lines
835 B
CSS
68 lines
835 B
CSS
body {
|
|
margin: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
header {
|
|
margin-top: 2em;
|
|
margin-left: 3em;
|
|
}
|
|
|
|
#header-links {
|
|
margin-top: 2em;
|
|
}
|
|
|
|
header a {
|
|
color: black;
|
|
padding: 1em;
|
|
}
|
|
|
|
header a:hover {
|
|
color: white;
|
|
background-color: black;
|
|
}
|
|
|
|
#main {
|
|
margin: auto;
|
|
margin-top: 5em;
|
|
margin-bottom: 5em;
|
|
width: 50%;
|
|
flex: 1;
|
|
}
|
|
|
|
footer {
|
|
background-color: #304B99;
|
|
padding: 1em;
|
|
text-align: center;
|
|
}
|
|
|
|
#fsf {
|
|
justify-self: right;
|
|
}
|
|
|
|
#footer-main {
|
|
display: grid;
|
|
grid-template-columns: 0.25fr 0.5fr 0.25fr;
|
|
}
|
|
|
|
#footer-text p {
|
|
justify-self: center;
|
|
margin: 0;
|
|
color: white;
|
|
}
|
|
|
|
#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;
|
|
}
|