graphicek/client/css/style.css

26 lines
368 B
CSS

body {
background: #eee;
}
#sensors-container {
display: grid;
grid-template-columns: 1fr 1fr;
}
.sensor {
background: #fff;
border-radius: 0.5rem;
margin: 0.5rem;
box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
overflow: hidden;
}
.sensor .header {
display: flex;
align-items: center;
padding: 0.5rem;
}
.sensor .header .actions {
margin-left: auto;
}