mirror of
https://github.com/sigmasternchen/glitch-countdown
synced 2025-03-15 18:38:54 +00:00
25 lines
329 B
CSS
25 lines
329 B
CSS
![]() |
body {
|
||
|
background-color: black;
|
||
|
}
|
||
|
|
||
|
#countdown {
|
||
|
position: absolute;
|
||
|
top: 50%;
|
||
|
left: 50%;
|
||
|
transform: translate(-50%, -50%);
|
||
|
width: 50vw;
|
||
|
height: 8vw;
|
||
|
background-color: grey;
|
||
|
}
|
||
|
|
||
|
#countdown div {
|
||
|
display: inline-block;
|
||
|
}
|
||
|
|
||
|
#countdown * {
|
||
|
font-size: 3vw;
|
||
|
}
|
||
|
|
||
|
#countdown input {
|
||
|
width: 6vw;
|
||
|
}
|