temperature-alarm/frontend/styles/home.css

55 lines
615 B
CSS

body {
font-family: Arial, Helvetica, sans-serif;
}
#container {
background-color: white;
opacity: 100%;
}
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 100%;
}
td,
th {
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
}
tr:nth-child(even) {
background-color: #dddddd;
}
.tempHigh {
color: #ff0000;
width: 20px;
}
.tempMidHigh {
color: #fffb00;
width: 20px;
}
.tempNormal {
color: #02ed26;
width: 20px;
}
.tempMidLow {
color: #16fae7;
width: 20px;
}
.tempLow {
color: #0004ff;
width: 20px;
}
.chartContainer{
margin: 20px;
}