@@ -212,3 +212,78 @@ input[type='number'] {
212212 overflow : hidden !important ;
213213 }
214214}
215+
216+ .loading {
217+ position : fixed;
218+ top : 0 ;
219+ left : 0 ;
220+ min-width : 100% ;
221+ min-height : 100% ;
222+ display : flex;
223+ justify-content : center;
224+ align-items : center;
225+ z-index : 10000 !important ;
226+ }
227+ .loading .lds-cube {
228+ position : relative;
229+ }
230+ .loading .lds-cube div {
231+ position : absolute;
232+ width : 80px ;
233+ height : 80px ;
234+ top : 10px ;
235+ left : 10px ;
236+ background : # fc4309 ;
237+ -webkit-animation : lds-cube 1s cubic-bezier (0 , 0.5 , 0.5 , 1 ) infinite;
238+ animation : lds-cube 1s cubic-bezier (0 , 0.5 , 0.5 , 1 ) infinite;
239+ -webkit-animation-delay : -0.3s ;
240+ animation-delay : -0.3s ;
241+ }
242+ .loading .lds-cube div : nth-child (2 ) {
243+ top : 10px ;
244+ left : 110px ;
245+ background : # ff765c ;
246+ -webkit-animation-delay : -0.2s ;
247+ animation-delay : -0.2s ;
248+ }
249+ .loading .lds-cube div : nth-child (3 ) {
250+ top : 110px ;
251+ left : 110px ;
252+ background : # ff9900 ;
253+ -webkit-animation-delay : 0s ;
254+ animation-delay : 0s ;
255+ }
256+ .loading .lds-cube div : nth-child (4 ) {
257+ top : 110px ;
258+ left : 10px ;
259+ background : # ffb646 ;
260+ -webkit-animation-delay : -0.1s ;
261+ animation-delay : -0.1s ;
262+ }
263+ .loading .lds-cube {
264+ width : 200px !important ;
265+ height : 200px !important ;
266+ -webkit-transform : translate (-100px , -100px ) scale (1 ) translate (100px , 100px );
267+ transform : translate (-100px , -100px ) scale (1 ) translate (100px , 100px );
268+ }
269+ @keyframes lds-cube {
270+ 0% {
271+ -webkit-transform : scale (1.5 );
272+ transform : scale (1.5 );
273+ }
274+ 100% {
275+ -webkit-transform : scale (1 );
276+ transform : scale (1 );
277+ }
278+ }
279+ @-webkit-keyframes lds-cube {
280+ 0% {
281+ -webkit-transform : scale (1.5 );
282+ transform : scale (1.5 );
283+ }
284+ 100% {
285+ -webkit-transform : scale (1 );
286+ transform : scale (1 );
287+ }
288+ }
289+
0 commit comments