31 lines
421 B
CSS
31 lines
421 B
CSS
body {
|
|
background-color: #333;
|
|
color: whitesmoke;
|
|
}
|
|
|
|
.loading {
|
|
text-align: center;
|
|
padding: 5em;
|
|
}
|
|
|
|
.loading img {
|
|
width: 30%;
|
|
}
|
|
|
|
.loading p {
|
|
font-weight: 700;
|
|
font-size: 1.2em;
|
|
}
|
|
|
|
.rotate {
|
|
animation: rotation 2s infinite linear;
|
|
}
|
|
|
|
@keyframes rotation {
|
|
from {
|
|
transform: rotate(0deg);
|
|
}
|
|
to {
|
|
transform: rotate(359deg);
|
|
}
|
|
} |