body {
  margin: 0px;
  background-color: #010104;
  color: white;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.sensor-graph, .sensor-group {
  height: 326px;
  width: 30%;
  margin-top: 45px;
  text-align: center;
}
@media only screen and (max-width: 600px) {
  .sensor-graph, .sensor-group {
    width: 90%;
  }
}
@media only screen and (min-width: 600px) and (max-width: 900px) {
  .sensor-graph, .sensor-group {
    width: 45%;
  }
}
.sensor-graph span.big, .sensor-group span.big {
  font-size: 2em;
}
.sensor-graph span.small, .sensor-group span.small {
  font-size: 0.75em;
  margin-left: 10px;
}

.s-ok {
  background-color: rgba(16, 134, 0, 0.6);
  border: #108600 solid 2px;
  border-radius: 5px;
}

.s-warning {
  background-color: rgba(255, 153, 0, 0.6);
  border: #FF9900 solid 2px;
  border-radius: 5px;
}

.s-error {
  background-color: rgba(134, 0, 16, 0.6);
  border: #860010 solid 2px;
  border-radius: 5px;
}

.sensor-group {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sensor-single {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
}

.sensors-set {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-content: flex-start;
}/*# sourceMappingURL=style.css.map */