bbpro
Version:
BrowserBox - remote browser isolation tool
34 lines (28 loc) • 628 B
CSS
:host(bb-bw-spinner) {
position: absolute ;
width: 100% ;
height: 100% ;
filter: invert(1) ;
pointer-events: none ;
}
.loader-wrapper {
display: flex;
justify-content: center;
align-items: center;
height: 100%;
width: 100%;
position: absolute;
background: rgba(244, 244, 244, 0.3);
}
.loader {
border: 5px solid rgba(0, 0, 0, 0.1);
border-radius: 50%;
border-top: 5px solid #000;
width: 50px;
height: 50px;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}