61 lines
694 B
CSS
61 lines
694 B
CSS
body {
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
}
|
|
|
|
#container {
|
|
background-color: white;
|
|
opacity: 100%;
|
|
}
|
|
|
|
table {
|
|
margin: 20px;
|
|
font-family: arial, sans-serif;
|
|
border-collapse: collapse;
|
|
width: 95%;
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
.tableConatiner{
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|