tout cassé
parent
00cd26f499
commit
5f62efd208
@ -1,34 +1,27 @@
|
|||||||
.centrage{
|
.centrage{
|
||||||
text-align : center;
|
text-align : center;
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.global {
|
.global {
|
||||||
position: absolute; /* postulat de départ */
|
position: absolute; /* postulat de départ */
|
||||||
top: 45%; left: 50%; /* à 50%/50% du parent référent */
|
top: 45%; left: 50%; /* à 50%/50% du parent référent */
|
||||||
transform: translate(-50%, -50%); /* décalage de 50% de sa propre taille */
|
transform: translate(-50%, -50%); /* décalage de 50% de sa propre taille */
|
||||||
text-align : center;
|
text-align : center;
|
||||||
|
}
|
||||||
}
|
|
||||||
|
|
||||||
.fort {
|
.fort {
|
||||||
|
font-weight: bold;
|
||||||
font-weight: bold;
|
|
||||||
text-align : center;
|
text-align : center;
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
font-size : 30px;
|
font-size : 30px;
|
||||||
|
}
|
||||||
}
|
|
||||||
|
|
||||||
.bord{
|
.bord{
|
||||||
|
border-radius: 20px;
|
||||||
border-radius: 20px;
|
border-left: 2px solid black;
|
||||||
border-left: 2px solid black;
|
border-right: 2px solid black;
|
||||||
border-right: 2px solid black;
|
border-top: 2px solid black;
|
||||||
border-top: 2px solid black;
|
border-bottom: 2px solid black;
|
||||||
border-bottom: 2px solid black;
|
padding : 20px 80px 60px 80px;
|
||||||
padding : 20px 80px 60px 80px;
|
}
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,128 +0,0 @@
|
|||||||
*{
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
font-family: "Calibri Light";
|
|
||||||
}
|
|
||||||
|
|
||||||
h1{
|
|
||||||
font-size: 3em;
|
|
||||||
text-align: center;
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
|
|
||||||
#content{
|
|
||||||
min-width: 320px;
|
|
||||||
width: 100%;
|
|
||||||
display: flex;
|
|
||||||
flex-wrap: nowrap;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
#tableauBord{
|
|
||||||
margin: 2em;
|
|
||||||
padding: 1em;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.menu {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: row;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
justify-content: center;
|
|
||||||
background-color: rgb(65, 154, 28);
|
|
||||||
}
|
|
||||||
|
|
||||||
.menuItem {
|
|
||||||
display: flex;
|
|
||||||
flex-wrap: nowrap;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
color: white;
|
|
||||||
width: 10%;
|
|
||||||
min-width: 5em;
|
|
||||||
font-weight: bold;
|
|
||||||
text-decoration: none;
|
|
||||||
padding: 0.8em;
|
|
||||||
border-bottom: 4px solid rgb(65, 154, 28);
|
|
||||||
font-size: 1.1em;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.menuItem:hover{
|
|
||||||
cursor: pointer;
|
|
||||||
border-bottom: 4px solid orange;
|
|
||||||
}
|
|
||||||
|
|
||||||
#divImgProfil{
|
|
||||||
width: 100%;
|
|
||||||
display: flex;
|
|
||||||
flex-wrap: nowrap;
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
#imgProfil{
|
|
||||||
background-color: white;
|
|
||||||
margin-top: 2.5em;
|
|
||||||
width: 60%;
|
|
||||||
height: 60%;
|
|
||||||
max-width: 210px;
|
|
||||||
max-height: 210px;
|
|
||||||
border-radius: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#trajet{
|
|
||||||
margin-top: 2em;
|
|
||||||
display: flex;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
flex-direction: row;
|
|
||||||
justify-content: center;
|
|
||||||
text-align: center;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btnTrajet{
|
|
||||||
display: flex;
|
|
||||||
flex-wrap: nowrap;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
text-decoration: none;
|
|
||||||
padding: 0.4em;
|
|
||||||
color: black;
|
|
||||||
background-color: lightgray;
|
|
||||||
border: 1px solid black;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
.btnTrajet:hover{
|
|
||||||
background-color: grey;
|
|
||||||
}
|
|
||||||
|
|
||||||
#btnTrajet2{
|
|
||||||
margin-left: 10%;
|
|
||||||
}
|
|
||||||
|
|
||||||
#recap{
|
|
||||||
margin-top: 2.5em;
|
|
||||||
width: 50%;
|
|
||||||
margin-left: 50%;
|
|
||||||
transform: translate(-50%);
|
|
||||||
}
|
|
||||||
|
|
||||||
.recapLine{
|
|
||||||
margin-bottom: 1.5em;
|
|
||||||
display: flex;
|
|
||||||
flex-wrap: nowrap;
|
|
||||||
justify-content: left;
|
|
||||||
align-items: center;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.recapIcon{
|
|
||||||
width: 50px;
|
|
||||||
height: 50px;
|
|
||||||
}
|
|
||||||
|
|
||||||
p{
|
|
||||||
margin-left: 10%;
|
|
||||||
}
|
|
Loading…
Reference in New Issue