Files
SmartHomePHP/web/css/panel.css
CyanoFresh f88404f8bd Added plant
2017-08-12 01:15:49 +03:00

130 lines
2.3 KiB
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;
}
/* Popover */
.popover {
width: 300px;
box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.3);
max-width: none;
border-radius: 0;
padding: 0;
margin-bottom: 30px;
}
.popover-content {
padding: 0;
}
@media (min-width: 767px) {
.popover {
width: 500px;
}
}
#debug-messages {
height: 100px;
width: 100%;
overflow-y: scroll;
background: #efefef;
margin-bottom: 10px;
}
.masonry-item {
display: inline-block;
position: relative;
}
@media screen and (max-width: 768px) {
/* 5 columns for larger screens */
.col-md-6.masonry-item { width: 100%; }
}
.panel-item-plant {
width: 100%;
background: #009688;
border-radius: 2px;
box-shadow: 0 1px 1.5px 0 rgba(0, 0, 0, .12), 0 1px 1px 0 rgba(0, 0, 0, .24);
color: #fff;
margin: 10px 0;
user-select: none;
}
.panel-item-plant-name {
background: rgba(0, 0, 0, 0.3);
text-align: center;
font-size: 15px;
padding: 5px 0;
font-weight: bold;
}
.panel-item-plant-actions {
padding: 10px;
}
.panel-item-plant-row {
display: flex;
position: relative;
width: 100%;
padding-top: 15px;
}
.panel-item-plant-soil-moisture {
font-size: 30px;
line-height: 45px;
text-align: center;
width: 50%;
}
.panel-item-plant-icon {
font-size: 45px;
text-align: center;
line-height: 1;
width: 50%;
border-right: 1px solid rgba(255,255,255,0.3);
}