Counter-to-new-year/main.css

57 lines
934 B
CSS
Raw Normal View History

2020-11-30 19:15:49 +00:00
body {
text-align: center;
font-family: "Open Sans";
font-weight: 100;
display: grid;
height: 100vh;
2021-12-19 18:24:54 +00:00
background: #000;
align-content: center;
2020-11-30 19:15:49 +00:00
}
.countdown-title {
color: #fff;
font-weight: 100;
font-size: 40px;
position: absolute;
width: 100%;
margin: 3vh 0 0 0;
2020-11-30 19:15:49 +00:00
}
.countdown {
2021-12-19 18:20:23 +00:00
font-family: sans-serif monospace;
2020-11-30 19:15:49 +00:00
color: #fff;
display: flex;
font-weight: 400;
text-align: center;
font-size: 30px;
width: max-content;
margin: auto;
}
#congrats{
font-size: 40px;
font-weight: 400;
color: #fff;
}
.countdown-inner {
font-size: 20vw;
2020-11-30 19:15:49 +00:00
}
.captions{
display: flex;
width: fit-content;
margin: 0 auto;
}
2021-08-11 18:56:11 +00:00
.incard_l {
display: block;
text-align: left;
position: absolute;
}
.incard_r {
display: block;
text-align: right;
}
2020-11-30 19:15:49 +00:00
.didts {
display: inline-block;
2021-12-21 15:38:05 +00:00
}
#separator1, #separator2{
transition: 250ms ease-in-out;
2020-11-30 19:15:49 +00:00
}