Juice/static/juice.css

45 lines
484 B
CSS
Raw Normal View History

2019-06-05 16:04:44 -04:00
body {
padding: 5%;
display: flex;
justify-content: center;
}
.device {
border: 1px solid #ccc;
2019-06-05 23:26:22 -04:00
padding: 3%;
margin: 3%;
2019-06-05 16:04:44 -04:00
display: flex;
flex-direction: column;
align-items: center;
}
.sub_devices {
display: flex;
}
.sub_device {
border: 1px solid #ccc;
padding: 1em;
margin: 1em;
2019-06-05 23:26:22 -04:00
display: flex;
flex-direction: column;
align-items: center;
}
.outlet_image {
width: 5em;
height: 5em;
2019-06-05 16:04:44 -04:00
}
path {
cursor: pointer;
}
.on {
stroke: red;
}
.off {
stroke: black;
}