feat: renommer package ui pour frontend
Si on suit les considérations du domain-driven design, le fait qu'on réfère toustes à cette partie du code comme `le frontend` me pousse à renommer le package pour mieux réflèter notre utilisation. Ça devrait rendre plus évident où les fichiers sources du frontend sont situés.
This commit is contained in:
parent
74fe5ac697
commit
076bb1a90c
98 changed files with 9 additions and 12 deletions
52
frontend/public/css/vie-etudiante.css
Normal file
52
frontend/public/css/vie-etudiante.css
Normal file
|
@ -0,0 +1,52 @@
|
|||
.table {
|
||||
font-family: "Poppins";
|
||||
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;
|
||||
}
|
||||
|
||||
.organismeActif {
|
||||
background-color: rgb(200, 255, 200);
|
||||
}
|
||||
|
||||
.organismeInactif {
|
||||
background-color: rgb(255, 200, 200);
|
||||
}
|
||||
|
||||
.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;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue