mirror of
https://github.com/CyanoFresh/SmartHomePHP.git
synced 2026-03-06 01:54:04 +01:00
49 lines
791 B
CSS
49 lines
791 B
CSS
|
|
|
|
/* Content loader */
|
|
#loader {
|
|
position: relative;
|
|
}
|
|
|
|
.loader-icon {
|
|
background: #2f2f2f;
|
|
border-radius: 100%;
|
|
height: 150px;
|
|
width: 150px;
|
|
margin: 100px auto 30px;
|
|
color: #fff;
|
|
text-align: center;
|
|
line-height: 150px;
|
|
font-size: 100px;
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
.loader-brand {
|
|
text-align: center;
|
|
font-size: 40px;
|
|
}
|
|
|
|
.loader-message {
|
|
opacity: 0;
|
|
text-align: center;
|
|
font-size: 18px;
|
|
position: absolute;
|
|
left: calc(50% - 15px);
|
|
top: 125px;
|
|
background: #F44336;
|
|
border-radius: 50px;
|
|
padding: 0 10px;
|
|
color: #fff;
|
|
box-shadow: 0 0 10px #f44336;
|
|
width: 100px;
|
|
transition: 0.8s;
|
|
}
|
|
|
|
#loader.error .loader-message {
|
|
opacity: 1;
|
|
}
|
|
|
|
.control-panel {
|
|
display: none;
|
|
}
|