docusaurus/v2/lib/theme/Loading/styles.module.css

22 lines
394 B
CSS
Raw Normal View History

2018-10-30 11:17:32 -04:00
.loader {
width: 100%;
height: 49px;
position: fixed;
text-align: center;
top: 35%;
}
.loaderSpinning {
width: 49px;
height: 49px;
margin: 0 auto;
border: 5px solid #cccccc;
border-radius: 50%;
border-top: 5px solid #1d4d8b;
animation: loader-spin infinite 1s linear;
}
@keyframes loader-spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}