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