agecem-org/public/css/vie-etudiante.css

52 lines
744 B
CSS
Raw Normal View History

.table {
font-family: "Poppins";
2023-10-19 17:05:04 -04:00
margin-bottom: 20px;
font-size: 0.625rem;
}
td {
padding: 5px 10px;
}
.tableRowHeading {
font-weight: 600;
}
.tableRow:nth-child(odd) {
background-color: #FFF;
}
.tableRow:nth-child(even) {
background-color: #F4F4F4;
2023-10-19 17:05:04 -04:00
}
.organismeActif {
background-color: rgb(200, 255, 200);
}
.organismeInactif {
background-color: rgb(255, 200, 200);
}
2023-10-19 17:05:04 -04:00
.vieEtudianteWrapper {
display: flex;
flex-flow: column;
align-items: center;
}
.separator {
width: 75%;
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;
}
}