ok-ready-go/web/index.css

79 lines
1 KiB
CSS
Raw Permalink 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-17 16:16:23 +01:00
html {
height: 100%;
}
body {
height: 100%;
}
2023-02-07 13:44:57 +01:00
main {
2023-02-09 13:23:28 +01:00
padding-top: 0 !important;
2023-02-17 16:16:23 +01:00
height: 100%;
2023-02-07 13:44:57 +01:00
}
2023-02-09 13:23:28 +01:00
.timer-container-div {
2023-02-17 16:16:23 +01:00
height: 100%;
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-17 16:16:23 +01:00
}
.hide-before-init {
display: none;
}
.remote-connection-card {
position: absolute;
bottom: 10px;
left: 0;
background-color: var(--background-color);
width: 100%;
}
details {
border-bottom: 0;
padding-bottom: 0;
2023-02-07 13:44:57 +01:00
}