temperature-alarm/frontend/pages/home/home.css
2025-03-19 16:02:59 +01:00

69 lines
977 B
CSS

body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
}
.topnav {
overflow: hidden;
background-color: #333;
}
.topnav a {
float: left;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.topnav a:hover {
background-color: #ddd;
color: black;
}
.topnav a.active {
background-color: #04AA6D;
color: white;
}
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;
}