40 lines
676 B
CSS
40 lines
676 B
CSS
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
|
|
Arial, sans-serif;
|
|
margin: auto;
|
|
/*max-width: 38rem;*/
|
|
padding-left: 1rem;
|
|
padding-top: 0.3rem;
|
|
/*background-color: #1F9598;*/
|
|
color: black;
|
|
}
|
|
|
|
|
|
.loader {
|
|
width: 65px;
|
|
height: 65px;
|
|
border: 5px solid #33D281;
|
|
border-bottom-color: transparent;
|
|
border-radius: 50%;
|
|
display: inline-block;
|
|
box-sizing: border-box;
|
|
animation: rotation 1.3s linear infinite;
|
|
margin-left: 1%;
|
|
margin-top: 1%;
|
|
}
|
|
|
|
|
|
@keyframes rotation {
|
|
0% {
|
|
transform: rotate(0deg);
|
|
}
|
|
100% {
|
|
transform: rotate(360deg);
|
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|