forked from HoloTech/twitch-subathon-timer
36 lines
551 B
CSS
36 lines
551 B
CSS
:root {
|
|
--break-color: #9020BA;
|
|
--focus-color: #EED59F;
|
|
--stage-color: var(--break-color);
|
|
--clip-path: none;
|
|
}
|
|
|
|
|
|
.timer-box{
|
|
height: 175px;
|
|
width: 397px;
|
|
padding: 5px;
|
|
}
|
|
|
|
|
|
.timer-time {
|
|
font-size: 100px;
|
|
font-family: Inter;
|
|
font-weight: 400;
|
|
letter-spacing: 0%;
|
|
text-align: center;
|
|
color: #453960;
|
|
}
|
|
.timer-details {
|
|
display: fill;
|
|
font-family: Inter;
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
text-align: center;
|
|
width: 65%;
|
|
margin: auto;
|
|
color: #453960;
|
|
}
|