glitch-countdown/dist/main.css

46 lines
701 B
CSS
Raw Normal View History

2023-10-29 22:24:20 +00:00
body {
background-color: black;
}
#countdown {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 50vw;
height: 8vw;
background-color: grey;
}
2023-10-29 22:58:26 +00:00
#countdown .part {
2023-10-29 22:24:20 +00:00
display: inline-block;
2023-10-29 22:58:26 +00:00
position: relative;
padding-top: 1vw;
2023-10-29 22:24:20 +00:00
}
#countdown * {
font-size: 3vw;
}
#countdown input {
width: 6vw;
2023-10-29 22:58:26 +00:00
height: 3.3vw;
}
#countdown .up, #countdown .down {
position: absolute;
line-height: 3vw;
width: 1vw;
text-align: center;
left: calc(50% - 0.5vw);
transform: rotate(90deg);
cursor: pointer;
}
#countdown .up {
top: calc(-1vw - 0.2vw);
}
#countdown .down {
top: calc(3.3vw + 0.2vw);
2023-10-29 22:24:20 +00:00
}