ok-ready-go/index.css

53 lines
737 B
CSS
Raw Normal View History

2023-02-07 13:44:57 +01:00
@keyframes blinker {
50% {
opacity: 0.3;
}
}
2023-02-09 13:23:28 +01:00
.loading {
font-size: 2em;
font-weight: bold;
text-align: center;
line-height: 1.2;
}
2023-02-07 13:44:57 +01:00
.timer {
font-size: 8em;
font-weight: bold;
text-align: center;
line-height: 1.2;
}
.timer.over {
color: #0f0;
animation: blinker 2s ease infinite;
}
2023-02-09 13:23:28 +01:00
.timer.sending {
color: #ff0;
animation: blinker 2s ease infinite;
}
2023-02-07 13:44:57 +01:00
main {
2023-02-09 13:23:28 +01:00
padding-top: 0 !important;
2023-02-07 13:44:57 +01:00
}
2023-02-09 13:23:28 +01:00
.timer-container-div {
height: 100vh;
2023-02-07 13:44:57 +01:00
display: flex;
align-items: center;
justify-content: center;
2023-02-09 13:23:28 +01:00
}
.timer-div {
cursor: pointer;
}
.tap-area {
width: 100vw;
height: 100vh;
position: absolute;
top: 0;
left: 0;
cursor: pointer;
2023-02-07 13:44:57 +01:00
}