47 lines
576 B
CSS
47 lines
576 B
CSS
|
body {
|
||
|
font-family: Roboto, sans-serif;
|
||
|
}
|
||
|
|
||
|
main {
|
||
|
position: absolute;
|
||
|
top: 0px;
|
||
|
bottom: 0px;
|
||
|
left: 0px;
|
||
|
right: 0px;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
flex-direction: column;
|
||
|
}
|
||
|
|
||
|
#logo {
|
||
|
width: 80vw;
|
||
|
}
|
||
|
|
||
|
#countdown {
|
||
|
margin-top: 1em;
|
||
|
font-size: 24px;
|
||
|
font-style: bold;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
footer {
|
||
|
position: absolute;
|
||
|
bottom: 0px;
|
||
|
left: 0px;
|
||
|
right: 0px;
|
||
|
}
|
||
|
|
||
|
footer ul {
|
||
|
list-style: none;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
footer ul li {
|
||
|
display: inline;
|
||
|
}
|
||
|
|
||
|
footer ul li:not(:first-child)::before {
|
||
|
content: "· "
|
||
|
}
|