Add style on school time table - Remove inutile lines of code

This commit is contained in:
Stefano Assenzo
2023-01-27 16:12:10 +00:00
committed by GitHub
parent 6ad24a92a7
commit 01f83d6171
3 changed files with 294 additions and 290 deletions

35
static/css/index.css Normal file
View File

@@ -0,0 +1,35 @@
.styled-table {
border-collapse: collapse;
margin: 25px 0;
font-size: 0.9em;
font-family: sans-serif;
min-width: 400px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
.styled-table thead tr {
background-color: #009879;
color: #ffffff;
text-align: left;
}
.styled-table th,
.styled-table td {
padding: 12px 15px;
}
.styled-table tbody tr {
border-bottom: 1px solid #dddddd;
}
.styled-table tbody tr:nth-of-type(even) {
background-color: #f3f3f3;
}
.styled-table tbody tr:last-of-type {
border-bottom: 2px solid #009879;
}
.styled-table tbody tr.active-row {
font-weight: bold;
color: #009879;
}