Warning, /iDDS/monitor/data/scss/core/loader/spinner.scss is written in an unsupported language. File is not indexed.
0001 // Loading
0002
0003 /*******************
0004 Preloader
0005 ********************/
0006 .preloader{
0007 width: 100%;
0008 height: 100%;
0009 top:0px;
0010 position: fixed;
0011 z-index: 99999;
0012 background: #fff;
0013 .cssload-speeding-wheel{
0014
0015 }
0016 }
0017 .lds-ripple {
0018 display: inline-block;
0019 position: relative;
0020 width: 64px;
0021 height: 64px;
0022 position: absolute;
0023 top: calc(50% - 3.5px);
0024 left: calc(50% - 3.5px);
0025 .lds-pos {
0026 position: absolute;
0027 border: 2px solid #2962FF;
0028 opacity: 1;
0029 border-radius: 50%;
0030 animation: lds-ripple 1s cubic-bezier(0, 0.1, 0.5, 1) infinite;
0031 }
0032 .lds-pos:nth-child(2) {
0033 animation-delay:-0.5s;
0034
0035 }
0036 }
0037
0038 @keyframes lds-ripple {
0039 0% {
0040 top: 28px;
0041 left: 28px;
0042 width: 0;
0043 height: 0;
0044 opacity: 0;
0045 }
0046 5% {
0047 top: 28px;
0048 left: 28px;
0049 width: 0;
0050 height: 0;
0051 opacity: 1;
0052 }
0053 100% {
0054 top: -1px;
0055 left: -1px;
0056 width: 58px;
0057 height: 58px;
0058 opacity: 0;
0059 }
0060 }
0061