mirror of
https://github.com/retailcrm/prestashop-module.git
synced 2025-03-04 04:03:16 +03:00
30 lines
557 B
Plaintext
30 lines
557 B
Plaintext
|
#retailcrm-loading-fade {
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
background: #000;
|
||
|
position: fixed;
|
||
|
left: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
top: 0;
|
||
|
z-index: 9999;
|
||
|
opacity: .5;
|
||
|
filter: alpha(opacity=50);
|
||
|
}
|
||
|
|
||
|
#retailcrm-loader {
|
||
|
width: 50px;
|
||
|
height: 50px;
|
||
|
border: 10px solid white;
|
||
|
animation: retailcrm-loader 2s linear infinite;
|
||
|
border-top: 10px solid #0c0c0c;
|
||
|
border-radius: 50%;
|
||
|
}
|
||
|
|
||
|
@keyframes retailcrm-loader {
|
||
|
from { transform: rotate(0deg); }
|
||
|
to { transform: rotate(360deg); }
|
||
|
}
|