restructuration des fichiers (pour pouvoir passer plus facilement plusieurs fronts)

This commit is contained in:
MiharyR 2021-11-11 17:02:27 +01:00
parent 48fb0845f1
commit ef5dd96747
86 changed files with 1343 additions and 335 deletions

View file

@ -0,0 +1,63 @@
.myContainer {
max-width: 100vw;
height: 100vh;
overflow-x: hidden;
}
// ----------------------------------------------------------
.btnAjouter {
margin-left: 3%;
font-size: larger;
padding: 5px 20px 5px 20px;
}
.lightTheme .btnAjouter {
border-top: solid 1px #dcdcdc;
border-right: solid 1px #dcdcdc;
border-left: solid 1px #dcdcdc;
color: black;
background-color: white;
}
.darkTheme .btnAjouter {
border-top: solid 1px white;
border-right: solid 1px white;
border-left: solid 1px white;
color: white;
background-color: black;
}
.darkTheme .btnAjouter:hover {
background-color: #646464;
color: black;
}
// ----------------------------------------------------------
table {
margin: 0 auto;
width: 94%;
}
.darkTheme table { border: solid 2px white; }
th.mat-sort-header-sorted {
color: black;
}
.lightTheme td {
}
.darkTheme td {
background-color: #646464;
color: white;
}
input {
width: 25%;
font-size: x-large;
border-radius: 5px;
}