web/css/style.css

69 lines
835 B
CSS
Raw Normal View History

2021-12-21 14:42:32 +00:00
body {
margin: 0;
2021-12-24 11:59:33 +00:00
display: flex;
flex-direction: column;
min-height: 100vh;
2021-12-21 14:42:32 +00:00
}
header {
margin-top: 2em;
margin-left: 3em;
}
#header-links {
margin-top: 2em;
}
2021-12-21 14:42:32 +00:00
header a {
color: black;
padding: 1em;
}
header a:hover {
color: white;
background-color: black;
2021-12-21 14:42:32 +00:00
}
#main {
margin: auto;
margin-top: 5em;
margin-bottom: 5em;
width: 50%;
2021-12-24 11:59:33 +00:00
flex: 1;
2021-12-21 14:42:32 +00:00
}
footer {
2021-12-24 12:17:11 +00:00
background-color: #304B99;
2021-12-21 14:42:32 +00:00
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;
2021-12-24 12:17:11 +00:00
color: white;
2021-12-21 14:42:32 +00:00
}
2021-12-24 12:17:11 +00:00
#footer-text a, #footer-text span {
color: white;
}
2021-12-21 14:42:32 +00:00
#footer-contact {
padding-top: 1em;
font-size: 12px;
}
#footer-link-email {
color: black;
text-decoration: underline dotted;
}