| 1 |
#welcart-overlay { |
| 2 |
display: -webkit-flex; |
| 3 |
display: flex; |
| 4 |
-webkit-flex-wrap: wrap; |
| 5 |
flex-wrap: wrap; |
| 6 |
align-items: center; |
| 7 |
align-content: center; |
| 8 |
position: fixed; |
| 9 |
top: 0; |
| 10 |
left: 0; |
| 11 |
width: 100vw; |
| 12 |
height: 100vh; |
| 13 |
max-width: 100%; |
| 14 |
max-height: 100%; |
| 15 |
min-width: 100%; |
| 16 |
min-height: 100%; |
| 17 |
background: rgba(0, 0, 0, 0.8); |
| 18 |
z-index: 2147483647; |
| 19 |
} |
| 20 |
#zeus-loading { |
| 21 |
width: 60px; |
| 22 |
margin: 0 auto 20px; |
| 23 |
text-align: center; |
| 24 |
} |
| 25 |
#welcart-loading, |
| 26 |
#zeus-loading::before { |
| 27 |
margin: 0 auto; |
| 28 |
|
| 29 |
width: 80px; |
| 30 |
height: 80px; |
| 31 |
border: 7px solid transparent; |
| 32 |
border-color: transparent #fff #fff transparent; |
| 33 |
|
| 34 |
border-radius: 100%; |
| 35 |
-moz-border-radius: 100%; |
| 36 |
-webkit-border-radius: 100%; |
| 37 |
-ms-border-radius: 100%; |
| 38 |
-o-border-radius: 100%; |
| 39 |
|
| 40 |
-webkit-animation: welcartSpin 1s linear 0.2s infinite; |
| 41 |
-moz-animation: welcartSpin 0.666s linear 0.2s infinite; |
| 42 |
-o-animation: welcartSpin 0.666s linear 0.2s infinite; |
| 43 |
-ms-animation: welcartSpin 0.666s linear 0.2s infinite; |
| 44 |
animation: welcartSpin 0.666s linear 0.2s infinite; |
| 45 |
} |
| 46 |
#zeus-loading::before { |
| 47 |
display: inline-block; |
| 48 |
content: ""; |
| 49 |
width: 20px; |
| 50 |
height: 20px; |
| 51 |
border-width: 5px; |
| 52 |
border-color: transparent #999 #999 transparent; |
| 53 |
} |
| 54 |
#welcart-loading-text { |
| 55 |
margin-top: 20px; |
| 56 |
width: 100vw; |
| 57 |
color: #fff; |
| 58 |
text-align: center; |
| 59 |
} |
| 60 |
#zeus-loading #welcart-loading-text { |
| 61 |
margin-top: 10px; |
| 62 |
width: auto; |
| 63 |
color: #333; |
| 64 |
} |
| 65 |
@-webkit-keyframes welcartSpin { |
| 66 |
0% { |
| 67 |
-webkit-transform: rotate(0deg); |
| 68 |
} |
| 69 |
100% { |
| 70 |
-webkit-transform: rotate(360deg); |
| 71 |
} |
| 72 |
} |
| 73 |
@-moz-keyframes welcartSpin { |
| 74 |
0% { |
| 75 |
-moz-transform: rotate(0deg); |
| 76 |
} |
| 77 |
100% { |
| 78 |
-moz-transform: rotate(360deg); |
| 79 |
} |
| 80 |
} |
| 81 |
@-ms-keyframes welcartSpin { |
| 82 |
0% { |
| 83 |
-ms-transform: rotate(0deg); |
| 84 |
} |
| 85 |
100% { |
| 86 |
-ms-transform: rotate(360deg); |
| 87 |
} |
| 88 |
} |
| 89 |
@-o-keyframes welcartSpin { |
| 90 |
0% { |
| 91 |
-o-transform: rotate(0deg); |
| 92 |
} |
| 93 |
100% { |
| 94 |
-o-transform: rotate(360deg); |
| 95 |
} |
| 96 |
} |
| 97 |
@keyframes welcartSpin { |
| 98 |
0% { |
| 99 |
transform: rotate(0deg); |
| 100 |
} |
| 101 |
100% { |
| 102 |
transform: rotate(360deg); |
| 103 |
} |
| 104 |
} |
| 105 |
|