зеркало из https://github.com/mozilla/treeherder.git
29 строки
441 B
CSS
29 строки
441 B
CSS
#loading-symbol {
|
|
position: relative; /* So we can absolutely position the loading overlay */
|
|
}
|
|
|
|
.overlay {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: rgba(242, 242, 242, 0.25);
|
|
z-index: 9999;
|
|
font-size: 30px;
|
|
}
|
|
|
|
.overlay > div {
|
|
position: relative;
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
.overlay > div > span {
|
|
position: absolute;
|
|
top: 40%;
|
|
left: 45%;
|
|
}
|