react-zeanium-ui-ui
Version:
Zeanium UI Framework for React.js
52 lines (48 loc) • 1.05 kB
text/less
.zn-loading {
width: 30px;
height: 30px;
margin: 0 auto;
position: absolute;
top: 80px;
left: 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;
&>.loading-text{
font-family: 'Raleway', sans-serif;
font-weight: bold;
font-size: 1em;
position: absolute;
top: 50%;
left: 50%;
margin-right: -50%;
transform: translate(-50%, -50%);
}
}
@-webkit-keyframes borderScale {
0% {
border: 5px solid white;
color: white ;
}
50% {
border: 25px solid #3498db;
color: #3498db ;
}
100% {
border: 5px solid white;
color: white ;
}
}
@keyframes borderScale {
0% {
border: 5px solid white;
}
50% {
border: 25px solid #3498db;
}
100% {
border: 5px solid white;
}
}