ok-ready-go/web/index.css

53 lines
737 B
CSS

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