Muh loading

This commit is contained in:
Dominik V. Salonen 2018-03-14 13:58:47 +01:00
parent 0d593c7f1e
commit f369f6148c
1 changed files with 13 additions and 4 deletions

View File

@ -94,16 +94,20 @@ h1, h2, h3, h4, h5, p {
.initial-text { .initial-text {
font-size: 18pt; font-size: 18pt;
text-align: center; text-align: center;
margin-top: 50px; margin-top: 70px;
margin-bottom: 50px; margin-bottom: 70px;
} }
.loading { .loading {
font-size: 26pt; font-size: 26pt;
color: #FF5555; color: #FF5555;
text-align: center; text-align: center;
margin-top: 50px; margin-top: 70px;
margin-bottom: 50px; margin-bottom: 70px;
animation-name: spin;
animation-duration: 4000ms;
animation-iteration-count: infinite;
animation-timing-function: linear;
} }
.notice { .notice {
@ -121,3 +125,8 @@ h1, h2, h3, h4, h5, p {
user-select: none; /* Non-prefixed version, currently user-select: none; /* Non-prefixed version, currently
supported by Chrome and Opera */ supported by Chrome and Opera */
} }
@keyframes spin {
from { transform:rotate(0deg); }
to { transform:rotate(360deg); }
}