refactor: déplacer fichiers go source vers pkg/ et cmd/
Déplacer public/ et templates/ vers ui/ et ui/public/ Bump projet à v3, API toujours v1
This commit is contained in:
parent
e46033d4a9
commit
7d4a747774
107 changed files with 68 additions and 107 deletions
115
ui/public/css/admin-upload.css
Normal file
115
ui/public/css/admin-upload.css
Normal file
|
@ -0,0 +1,115 @@
|
|||
.adminUploadForm {
|
||||
font-family: 'Poppins';
|
||||
display: flex;
|
||||
flex-flow: column;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.formContent {
|
||||
display: flex;
|
||||
flex-flow: column;
|
||||
|
||||
}
|
||||
|
||||
.formSelectDiv {
|
||||
display: flex;
|
||||
flex-flow: column;
|
||||
margin: 20px;
|
||||
}
|
||||
|
||||
.formLabel {
|
||||
font-family: 'Poppins';
|
||||
font-size: 0.875rem;
|
||||
font-weight: 600;
|
||||
margin: 0;
|
||||
padding-top: 10px;
|
||||
padding-bottom: 10px;
|
||||
color: #394596;
|
||||
}
|
||||
|
||||
.formSelect {
|
||||
font-family: 'Poppins';
|
||||
font-size: 0.875rem;
|
||||
font-weight: 400;
|
||||
border: 1px #C4C4C4 solid;
|
||||
padding: 10px;
|
||||
|
||||
}
|
||||
|
||||
/*La flèche de l'élément*/
|
||||
.formSelect:after {
|
||||
color: #000
|
||||
}
|
||||
|
||||
.formOption {
|
||||
font-family: 'Poppins';
|
||||
font-size: 0.875rem;
|
||||
font-weight: 400;
|
||||
margin-top: 5px;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.formOption:hover {
|
||||
background-color: #C4C4C4;
|
||||
}
|
||||
|
||||
.formDocUploadDiv {
|
||||
display: flex;
|
||||
flex-flow: column;
|
||||
margin: 20px;
|
||||
}
|
||||
|
||||
.formDocUpload {
|
||||
font-family: 'Poppins';
|
||||
font-size: 0.875rem;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.formDocUpload::file-selector-button {
|
||||
font-family: 'Poppins';
|
||||
font-size: 0.875rem;
|
||||
font-weight: 400;
|
||||
background-color: #FF563C;
|
||||
padding: 7px;
|
||||
color: #fff;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
margin-right: 15px;
|
||||
}
|
||||
|
||||
.formSubmit {
|
||||
font-family: 'Poppins';
|
||||
font-size: 1rem;
|
||||
font-weight: 500;
|
||||
background-color: #FF563C;
|
||||
padding: 10px;
|
||||
color: #fff;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
margin: 20px;
|
||||
}
|
||||
|
||||
.confirmationMessage {
|
||||
font-family: 'Poppins';
|
||||
font-size: 0.75rem;
|
||||
font-weight: 500;
|
||||
text-align: center;
|
||||
margin: 10px;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 768px) {
|
||||
.formContent {
|
||||
display: flex;
|
||||
flex-flow: row;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 1140px) {
|
||||
.confirmationMessage {
|
||||
font-size: 1rem;
|
||||
font-weight: 500;
|
||||
margin: 20px;
|
||||
padding: 10px;
|
||||
}
|
||||
}
|
17
ui/public/css/admin.css
Normal file
17
ui/public/css/admin.css
Normal file
|
@ -0,0 +1,17 @@
|
|||
.adminOptions {
|
||||
display: flex;
|
||||
flex-flow: row wrap;
|
||||
justify-content: space-around;
|
||||
|
||||
}
|
||||
|
||||
.adminOption {
|
||||
font-family: 'Poppins';
|
||||
font-size: 1rem;
|
||||
font-weight: 500;
|
||||
background-color: #FF563C;
|
||||
padding: 10px;
|
||||
color: #fff;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
}
|
46
ui/public/css/documentation.css
Normal file
46
ui/public/css/documentation.css
Normal file
|
@ -0,0 +1,46 @@
|
|||
.documentationCategorie {
|
||||
font-family: "Poppins";
|
||||
font-weight: 600;
|
||||
/*semi-bold*/
|
||||
font-size: 1.5rem;
|
||||
/*24px*/
|
||||
color: #fff;
|
||||
/*Blanc pur*/
|
||||
background-color: #394596;
|
||||
/*Blanc pur*/
|
||||
text-align: left;
|
||||
width: 100%;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.documentationDescription {
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.documentationListe {
|
||||
font-weight: 400;
|
||||
/*regular*/
|
||||
font-size: 1rem;
|
||||
/*16px*/
|
||||
background-color: #fff;
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.documentationDocument {
|
||||
font-weight: 400;
|
||||
/*regular*/
|
||||
font-size: 1rem;
|
||||
/*16px*/
|
||||
padding: 15px 30px;
|
||||
}
|
||||
|
||||
.documentationDocument:hover {
|
||||
background-color: rgba(255, 86, 60, 0.2);
|
||||
}
|
||||
|
||||
.documentationLien {
|
||||
height: inherit;
|
||||
width: inherit;
|
||||
color: #000;
|
||||
}
|
161
ui/public/css/fonts.css
Normal file
161
ui/public/css/fonts.css
Normal file
|
@ -0,0 +1,161 @@
|
|||
@font-face {
|
||||
font-family: "Poppins";
|
||||
src: url('/public/fonts/Poppins/poppins-thin.woff2') format('woff2'),
|
||||
url('/public/fonts/Poppins/poppins-thin.woff') format('woff'),
|
||||
url('/public/fonts/Poppins/poppins-thin.otf') format('otf');
|
||||
font-weight: 100;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Poppins";
|
||||
src: url('/public/fonts/Poppins/poppins-thin-italic.woff2') format('woff2'),
|
||||
url('/public/fonts/Poppins/poppins-thin-italic.woff') format('woff'),
|
||||
url('/public/fonts/Poppins/poppins-thin-italic.otf') format('otf');
|
||||
font-weight: 100;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Poppins";
|
||||
src: url('/public/fonts/Poppins/poppins-extralight.woff2') format('woff2'),
|
||||
url('/public/fonts/Poppins/poppins-extralight.woff') format('woff'),
|
||||
url('/public/fonts/Poppins/poppins-extralight.otf') format('otf');
|
||||
font-weight: 200;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Poppins";
|
||||
src: url('/public/fonts/Poppins/poppins-extralight-italic.woff2') format('woff2'),
|
||||
url('/public/fonts/Poppins/poppins-extralight-italic.woff') format('woff'),
|
||||
url('/public/fonts/Poppins/poppins-extralight-italic.otf') format('otf');
|
||||
font-weight: 200;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Poppins";
|
||||
src: url('/public/fonts/Poppins/poppins-light.woff2') format('woff2'),
|
||||
url('/public/fonts/Poppins/poppins-light.woff') format('woff'),
|
||||
url('/public/fonts/Poppins/poppins-light.otf') format('otf');
|
||||
font-weight: 300;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Poppins";
|
||||
src: url('/public/fonts/Poppins/poppins-light-italic.woff2') format('woff2'),
|
||||
url('/public/fonts/Poppins/poppins-light-italic.woff') format('woff'),
|
||||
url('/public/fonts/Poppins/poppins-light-italic.otf') format('otf');
|
||||
font-weight: 300;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Poppins";
|
||||
src: url('/public/fonts/Poppins/poppins-regular.woff2') format('woff2'),
|
||||
url('/public/fonts/Poppins/poppins-regular.woff') format('woff'),
|
||||
url('/public/fonts/Poppins/poppins-regular.otf') format('otf');
|
||||
font-weight: 400;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Poppins";
|
||||
src: url('/public/fonts/Poppins/poppins-regular-italic.woff2') format('woff2'),
|
||||
url('/public/fonts/Poppins/poppins-regular-italic.woff') format('woff'),
|
||||
url('/public/fonts/Poppins/poppins-regular-italic.otf') format('otf');
|
||||
font-weight: 400;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Poppins";
|
||||
src: url('/public/fonts/Poppins/poppins-medium.woff2') format('woff2'),
|
||||
url('/public/fonts/Poppins/poppins-medium.woff') format('woff'),
|
||||
url('/public/fonts/Poppins/poppins-medium.otf') format('otf');
|
||||
font-weight: 500;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Poppins";
|
||||
src: url('/public/fonts/Poppins/poppins-medium-italic.woff2') format('woff2'),
|
||||
url('/public/fonts/Poppins/poppins-medium-italic.woff') format('woff'),
|
||||
url('/public/fonts/Poppins/poppins-medium-italic.otf') format('otf');
|
||||
font-weight: 500;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Poppins";
|
||||
src: url('/public/fonts/Poppins/poppins-semibold.woff2') format('woff2'),
|
||||
url('/public/fonts/Poppins/poppins-semibold.woff') format('woff'),
|
||||
url('/public/fonts/Poppins/poppins-semibold.otf') format('otf');
|
||||
font-weight: 600;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Poppins";
|
||||
src: url('/public/fonts/Poppins/poppins-semibold-italic.woff2') format('woff2'),
|
||||
url('/public/fonts/Poppins/poppins-semibold-italic.woff') format('woff'),
|
||||
url('/public/fonts/Poppins/poppins-semibold-italic.otf') format('otf');
|
||||
font-weight: 600;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Poppins";
|
||||
src: url('/public/fonts/Poppins/poppins-bold.woff2') format('woff2'),
|
||||
url('/public/fonts/Poppins/poppins-bold.woff') format('woff'),
|
||||
url('/public/fonts/Poppins/poppins-bold.otf') format('otf');
|
||||
font-weight: 700;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Poppins";
|
||||
src: url('/public/fonts/Poppins/poppins-bold-italic.woff2') format('woff2'),
|
||||
url('/public/fonts/Poppins/poppins-bold-italic.woff') format('woff'),
|
||||
url('/public/fonts/Poppins/poppins-bold-italic.otf') format('otf');
|
||||
font-weight: 700;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Poppins";
|
||||
src: url('/public/fonts/Poppins/poppins-extrabold.woff2') format('woff2'),
|
||||
url('/public/fonts/Poppins/poppins-extrabold.woff') format('woff'),
|
||||
url('/public/fonts/Poppins/poppins-extrabold.otf') format('otf');
|
||||
font-weight: 800;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Poppins";
|
||||
src: url('/public/fonts/Poppins/poppins-extrabold-italic.woff2') format('woff2'),
|
||||
url('/public/fonts/Poppins/poppins-extrabold-italic.woff') format('woff'),
|
||||
url('/public/fonts/Poppins/poppins-extrabold-italic.otf') format('otf');
|
||||
font-weight: 800;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Poppins";
|
||||
src: url('/public/fonts/Poppins/poppins-black.woff2') format('woff2'),
|
||||
url('/public/fonts/Poppins/poppins-black.woff') format('woff'),
|
||||
url('/public/fonts/Poppins/poppins-black.otf') format('otf');
|
||||
font-weight: 900;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Poppins";
|
||||
src: url('/public/fonts/Poppins/poppins-black-italic.woff2') format('woff2'),
|
||||
url('/public/fonts/Poppins/poppins-black-italic.woff') format('woff'),
|
||||
url('/public/fonts/Poppins/poppins-black-italic.otf') format('otf');
|
||||
font-weight: 900;
|
||||
font-style: italic;
|
||||
}
|
38
ui/public/css/footer.css
Normal file
38
ui/public/css/footer.css
Normal file
|
@ -0,0 +1,38 @@
|
|||
.pageFooter {
|
||||
background: #f3f3f7;
|
||||
/*Gris pâle*/
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
ul.footerElementList {
|
||||
display: flex;
|
||||
flex-flow: row;
|
||||
list-style: none;
|
||||
justify-content: space-around;
|
||||
align-items: center;
|
||||
text-align: center;
|
||||
|
||||
}
|
||||
|
||||
.footerElement {
|
||||
font-family: "Poppins";
|
||||
font-weight: 400;
|
||||
/*semi-bold*/
|
||||
font-size: 0.5rem;
|
||||
/*8px*/
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 768px) {
|
||||
.footerElement {
|
||||
font-family: "Poppins";
|
||||
font-weight: 400;
|
||||
/*semi-bold*/
|
||||
font-size: 0.75rem;
|
||||
/*12px*/
|
||||
text-align: center;
|
||||
}
|
||||
}
|
80
ui/public/css/general.css
Normal file
80
ui/public/css/general.css
Normal file
|
@ -0,0 +1,80 @@
|
|||
html {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
*,
|
||||
*:before,
|
||||
*:after {
|
||||
box-sizing: inherit;
|
||||
}
|
||||
|
||||
img {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
padding-top: 60px;
|
||||
padding-bottom: 20px;
|
||||
}
|
||||
|
||||
ul {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #FF563C;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.wrapper {
|
||||
max-width: 375px;
|
||||
width: calc(100% - var(5px));
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.heading1 {
|
||||
font-family: "Poppins";
|
||||
font-weight: 600;
|
||||
/*semi-bold*/
|
||||
font-size: 3rem;
|
||||
/*48px*/
|
||||
color: #394596;
|
||||
/*Bleu AGECEM*/
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.heading2 {
|
||||
font-family: "Poppins";
|
||||
font-weight: 300;
|
||||
/*light*/
|
||||
font-size: 1rem;
|
||||
/*16px*/
|
||||
color: #394596;
|
||||
/*Bleu AGECEM*/
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 768px) {
|
||||
.wrapper {
|
||||
max-width: 768px;
|
||||
width: calc(100% - var(15px));
|
||||
}
|
||||
|
||||
.heading1 {
|
||||
font-size: 4rem;
|
||||
/*64px*/
|
||||
}
|
||||
|
||||
.heading2 {
|
||||
font-size: 1.5rem;
|
||||
/*24px*/
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 1140px) {
|
||||
.wrapper {
|
||||
max-width: 1140px;
|
||||
width: calc(100% - var(30px));
|
||||
}
|
||||
}
|
105
ui/public/css/header.css
Normal file
105
ui/public/css/header.css
Normal file
|
@ -0,0 +1,105 @@
|
|||
.header {
|
||||
position: fixed;
|
||||
z-index: 20;
|
||||
width: 100%;
|
||||
top: 0;
|
||||
background-color: #fff;
|
||||
height: 60px;
|
||||
}
|
||||
|
||||
.headerWrapper {
|
||||
display: flex;
|
||||
flex-flow: row;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.headerMenuElementLink {
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.headerMenuElementLink:visited {
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.headerMenu {
|
||||
background-color: #fff;
|
||||
font-family: "Poppins";
|
||||
font-weight: 400;
|
||||
/*regular*/
|
||||
font-size: 1.25rem;
|
||||
/*20px*/
|
||||
list-style: none;
|
||||
display: none;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.headerMenuElement {
|
||||
padding-bottom: 5px;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.headerMenuElement:hover {
|
||||
border-bottom: 5px #FF563C solid;
|
||||
/*Orange Highlight*/
|
||||
cursor: pointer;
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
.headerMenuHamburger {
|
||||
height: 50px;
|
||||
width: 50px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.headerMenuMobile {
|
||||
font-family: "Poppins";
|
||||
font-weight: 400;
|
||||
/*regular*/
|
||||
font-size: 2rem;
|
||||
/*32px*/
|
||||
list-style: none;
|
||||
display: none;
|
||||
}
|
||||
|
||||
.nav-is-active {
|
||||
background-color: #fff;
|
||||
display: flex;
|
||||
flex-flow: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
text-align: left;
|
||||
position: fixed;
|
||||
top: 75px;
|
||||
width: 100%;
|
||||
height: 90%;
|
||||
margin: 0;
|
||||
padding: auto;
|
||||
}
|
||||
|
||||
/* Le header s'affiche en menu hamburger pour les breakpoints téléphone et tablette */
|
||||
@media screen and (min-width: 778px) {
|
||||
.nav-is-active {
|
||||
font-size: 2rem;
|
||||
/*32px*/
|
||||
}
|
||||
}
|
||||
|
||||
/* Les éléments du header s'affichent pour le breakpoint ordinateur */
|
||||
@media screen and (min-width: 1140px) {
|
||||
.headerMenu {
|
||||
display: flex;
|
||||
flex-flow: row;
|
||||
justify-content: space-around;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.headerMenuHamburger {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.nav-is-active {
|
||||
display: none;
|
||||
}
|
||||
}
|
42
ui/public/css/index.css
Normal file
42
ui/public/css/index.css
Normal file
|
@ -0,0 +1,42 @@
|
|||
.indexAbout {
|
||||
font-family: "Poppins";
|
||||
font-weight: 400;
|
||||
/*regular*/
|
||||
font-size: 1rem;
|
||||
/*16px*/
|
||||
color: #000;
|
||||
/*Bleu AGECEM*/
|
||||
line-height: 150%;
|
||||
}
|
||||
|
||||
.indexContactContent {
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.indexContactInfo {
|
||||
font-family: "Poppins";
|
||||
font-weight: 400;
|
||||
/*regular*/
|
||||
font-size: 1rem;
|
||||
/*16px*/
|
||||
color: #000;
|
||||
/*Bleu AGECEM*/
|
||||
line-height: 175%;
|
||||
margin: 5px 0;
|
||||
}
|
||||
|
||||
.iconLink {
|
||||
height: 50px;
|
||||
width: 50px;
|
||||
}
|
||||
|
||||
.indexContactSocials {
|
||||
display: grid;
|
||||
column-gap: 10px;
|
||||
grid-template-columns: repeat(auto-fit, 50px);
|
||||
}
|
||||
|
||||
.indexContactSocial {
|
||||
height: 50px;
|
||||
width: 50px;
|
||||
}
|
10
ui/public/css/proces-verbaux.css
Normal file
10
ui/public/css/proces-verbaux.css
Normal file
|
@ -0,0 +1,10 @@
|
|||
.procesVerbauxP {
|
||||
font-family: "Poppins";
|
||||
font-weight: 400;
|
||||
/*regular*/
|
||||
font-size: 1rem;
|
||||
/*16px*/
|
||||
color: #000;
|
||||
/*Bleu AGECEM*/
|
||||
line-height: 150%;
|
||||
}
|
48
ui/public/css/snackbar.css
Normal file
48
ui/public/css/snackbar.css
Normal file
|
@ -0,0 +1,48 @@
|
|||
body {
|
||||
margin-bottom: 50px;
|
||||
}
|
||||
|
||||
.snackbar {
|
||||
position: fixed;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
background-color: #FF563C;
|
||||
color: #fff;
|
||||
width: 100%;
|
||||
padding: 5px 0;
|
||||
opacity: 0.8;
|
||||
}
|
||||
|
||||
.snackbar-is-closed {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.snackbarWrapper {
|
||||
display: flex;
|
||||
flex-flow: row;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
line-height: 100%;
|
||||
}
|
||||
|
||||
span {
|
||||
margin: 10px 10px 10px 0;
|
||||
font-size: 0.75rem;
|
||||
/*12px*/
|
||||
font-family: 'Poppins';
|
||||
font-weight: 600;
|
||||
/*semi-bold*/
|
||||
}
|
||||
|
||||
@media screen and (min-width: 375px) {
|
||||
span {
|
||||
font-size: 1rem;
|
||||
/*16px*/
|
||||
}
|
||||
}
|
||||
|
||||
.snackbarFermer {
|
||||
height: 30px;
|
||||
width: 30px;
|
||||
cursor: pointer;
|
||||
}
|
52
ui/public/css/vie-etudiante.css
Normal file
52
ui/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