mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-18 08:03:30 +02:00
26 lines
423 B
CSS
26 lines
423 B
CSS
.screen-error {
|
|
width: 100%;
|
|
height: 100%;
|
|
background: rgba(0, 0, 0, 0.7);
|
|
z-index: 100;
|
|
position: absolute;
|
|
/*pointer-events: none; */
|
|
}
|
|
|
|
.screen-error .nothing-to-show {
|
|
color: #eee;
|
|
}
|
|
|
|
.screen-error .screen-error-message {
|
|
position: relative;
|
|
top: 15%;
|
|
transform: translateY(-15%);
|
|
text-align: center;
|
|
}
|
|
|
|
.screen-error .screen-error-alert {
|
|
padding: 15px;
|
|
margin-bottom: 20px;
|
|
color: #ccc;
|
|
}
|