You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
893 B
52 lines
893 B
4 years ago
|
#loader-container {
|
||
|
width: 200px;
|
||
|
height: 200px;
|
||
|
color: white;
|
||
|
margin: 0 auto;
|
||
|
position: fixed;
|
||
|
top: 50%;
|
||
|
left: 50%;
|
||
|
margin-right: -50%;
|
||
|
transform: translate(-50%, -50%);
|
||
|
border: 5px solid #3498db;
|
||
|
border-radius: 50%;
|
||
|
-webkit-animation: borderScale 1s infinite ease-in-out;
|
||
|
animation: borderScale 1s infinite ease-in-out;
|
||
|
z-index: 100;
|
||
|
opacity:1
|
||
|
}
|
||
|
|
||
|
#loadingText {
|
||
|
font-family: 'Raleway', sans-serif;
|
||
|
font-weight: bold;
|
||
|
font-size: 2em;
|
||
|
position: absolute;
|
||
|
top: 50%;
|
||
|
left: 50%;
|
||
|
margin-right: -50%;
|
||
|
transform: translate(-50%, -50%);
|
||
|
}
|
||
|
|
||
|
@-webkit-keyframes borderScale {
|
||
|
0% {
|
||
|
border: 5px solid white;
|
||
|
}
|
||
|
50% {
|
||
|
border: 25px solid #3498db;
|
||
|
}
|
||
|
100% {
|
||
|
border: 5px solid white;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@keyframes borderScale {
|
||
|
0% {
|
||
|
border: 5px solid white;
|
||
|
}
|
||
|
50% {
|
||
|
border: 25px solid #3498db;
|
||
|
}
|
||
|
100% {
|
||
|
border: 5px solid white;
|
||
|
}
|
||
|
}
|