fix/affichage-vie-etudiante #163

Merged
vlbeaudoin merged 7 commits from fix/affichage-vie-etudiante into main 2023-10-26 17:03:39 -04:00
Showing only changes of commit 9812294781 - Show all commits

View file

@ -1,6 +1,7 @@
.table { .table {
font-family: "Poppins"; font-family: "Poppins";
margin-bottom: 20px; margin-bottom: 20px;
font-size: 0.625rem;
} }
td { td {
@ -11,7 +12,9 @@ td {
font-weight: 600; font-weight: 600;
} }
.tableRow:nth-child(odd) {} .tableRow:nth-child(odd) {
background-color: #FFF;
}
.tableRow:nth-child(even) { .tableRow:nth-child(even) {
background-color: #F4F4F4; background-color: #F4F4F4;
@ -27,3 +30,15 @@ td {
width: 75%; width: 75%;
border: 1px solid #C4C4C4; border: 1px solid #C4C4C4;
} }
@media screen and (min-width: 768px) {
.table {
font-size: 0.875rem;
}
}
@media screen and (min-width: 1140px) {
.table {
font-size: 1rem;
}
}