24 lines
404 B
CSS
24 lines
404 B
CSS
body {
|
|
text-align: center;
|
|
padding-top: 100px;
|
|
}
|
|
|
|
.spinner {
|
|
border: 16px solid #f3f3f3;
|
|
border-top: 16px solid #002554;
|
|
border-radius: 50%;
|
|
width: 120px;
|
|
height: 120px;
|
|
animation: spin 2s linear infinite;
|
|
margin: auto;
|
|
}
|
|
|
|
@keyframes spin {
|
|
0% { transform: rotate(0deg); }
|
|
100% { transform: rotate(360deg); }
|
|
}
|
|
|
|
p {
|
|
margin-top: 20px;
|
|
font-size: 20px;
|
|
} |