41 lines
723 B
CSS
41 lines
723 B
CSS
#MMM-HomeAssistant-Touch {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
#MMM-HomeAssistant-Touch .ha-entity {
|
|
border: 0.1rem solid grey;
|
|
border-radius: 0.5rem;
|
|
padding: 0.5rem;
|
|
margin: 0.5rem;
|
|
}
|
|
|
|
#MMM-HomeAssistant-Touch .ha-entity .title,
|
|
#MMM-HomeAssistant-Touch .ha-entity .status {
|
|
display: block;
|
|
}
|
|
|
|
#MMM-HomeAssistant-Touch .ha-entity.ha-switch.on,
|
|
#MMM-HomeAssistant-Touch .ha-entity.ha-light.on {
|
|
background-color: #2af20261;
|
|
}
|
|
|
|
.ha-slider {
|
|
width: 3rem;
|
|
height: 200px;
|
|
border: 0.1rem solid grey;
|
|
position: absolute;
|
|
}
|
|
|
|
.ha-slider .ha-slider-fill {
|
|
background-color: #2af20261;
|
|
width: 3rem;
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
text-align: center;
|
|
}
|
|
|
|
body {
|
|
cursor: default;
|
|
} |