0xee
3820cb60a5
- allow multiple topics - add width argument + square_button_widget - add touch/release payloads
81 lines
1.3 KiB
CSS
81 lines
1.3 KiB
CSS
.widget-unset { color: #888; /* #708ea4; */ }
|
|
#wrapper { 100%;}
|
|
html, body {
|
|
height: 100%;
|
|
overflow: auto;
|
|
}
|
|
.wrapper-error { background-color: #fee; }
|
|
#wrapper { width: 90%; height: 100%;}
|
|
.button {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.log-delete {
|
|
vertical-align: 5px;
|
|
margin-left:5px;
|
|
}
|
|
.table-container {
|
|
max-height: 10rem;
|
|
overflow: auto;
|
|
}
|
|
.slider {
|
|
width: 90%;
|
|
}
|
|
|
|
.slider::-moz-range-thumb {
|
|
border: 0px;
|
|
height: 24px;
|
|
width: 24px;
|
|
border-radius: 100px;
|
|
background: #3298dc;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.slider::-moz-range-progress {
|
|
background-color: #3298dc;
|
|
height: 12px;
|
|
border-radius: 100px;
|
|
}
|
|
|
|
.slider::-moz-range-track {
|
|
width: 100%;
|
|
height: 12px;
|
|
border-radius: 100px;
|
|
background-color: #eee;
|
|
}
|
|
.slider-value {
|
|
margin-left:10px;
|
|
width: 10%;
|
|
}
|
|
|
|
.button {
|
|
-webkit-transition-duration: 0.4s; /* Safari */
|
|
transition-duration: 0.4s;
|
|
}
|
|
|
|
.widget-container {
|
|
position: relative;
|
|
}
|
|
.widget {
|
|
align: center;
|
|
vertical-align: middle;
|
|
position: relative;
|
|
left: 0px;
|
|
top: 0px;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.details-link {
|
|
opacity: 0.2;
|
|
position: absolute;
|
|
right: 0px;
|
|
top: 0px;
|
|
z-index: 9;
|
|
}
|
|
|
|
.widget-container:hover .details-link {
|
|
opacity: 1;
|
|
}
|