2024-10-17 17:47:36 +02:00
|
|
|
.top-bar {
|
|
|
|
background-color: #db5559;
|
|
|
|
width: calc(100% - 18%); /*Calcule la totalité de l'écran - le left-background */
|
|
|
|
height: 60px;
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 18%; /*Evite le chauvechement des 2 bars */
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
padding: 0 20px;
|
|
|
|
color: white;
|
|
|
|
font-size: 18px;
|
|
|
|
box-sizing: border-box; /* Inclut le padding dans la largeur totale */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.user-role {
|
|
|
|
background-color: white;
|
|
|
|
color: black;
|
|
|
|
padding: 10px 15px;
|
|
|
|
font-weight: bold;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2024-10-03 17:47:31 +02:00
|
|
|
.left-background {
|
2024-10-17 17:47:36 +02:00
|
|
|
background-color: #db5559;
|
|
|
|
width: 18%;
|
|
|
|
height: 100%;
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: space-between;
|
2024-09-26 17:08:30 +02:00
|
|
|
}
|
2024-10-03 17:47:31 +02:00
|
|
|
|
2024-10-17 17:47:36 +02:00
|
|
|
|
|
|
|
.index-title-page {
|
|
|
|
color: #FFFFFF;
|
|
|
|
font-size: 60px;
|
|
|
|
padding-bottom: 10px;
|
2024-10-03 17:47:31 +02:00
|
|
|
font-family: 'Brittany Signature', sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul {
|
2024-10-17 17:47:36 +02:00
|
|
|
list-style-type: none;
|
2024-10-03 17:47:31 +02:00
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
li {
|
2024-10-17 17:47:36 +02:00
|
|
|
padding-bottom: 30px;
|
2024-10-03 17:47:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.btn-custom {
|
2024-10-17 17:47:36 +02:00
|
|
|
background-color: #FFFFFF;
|
|
|
|
color: black;
|
|
|
|
padding: 15px 40px;
|
|
|
|
font-size: 16px;
|
|
|
|
font-weight: bold;
|
|
|
|
cursor: pointer;
|
|
|
|
display: inline-block;
|
|
|
|
|
|
|
|
border-right: 5px solid #db5559;
|
|
|
|
border-left: 5px solid #db5559;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.btn-custom:hover, .btn-info-compte:hover, .btn-info-exit:hover {
|
|
|
|
background-color: #f8b5b5;
|
2024-10-03 17:47:31 +02:00
|
|
|
color: #FFFFFF;
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon-medium {
|
|
|
|
width: 25px;
|
|
|
|
height: 25px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon-container {
|
2024-10-17 17:47:36 +02:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
gap: 10px;
|
2024-10-03 17:47:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2024-10-17 17:47:36 +02:00
|
|
|
.Information-perso {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
padding: 20px;
|
|
|
|
margin-top: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-info-compte, .btn-info-exit {
|
|
|
|
background-color: #FFFFFF;
|
|
|
|
color: black;
|
|
|
|
padding: 10px 20px;
|
|
|
|
font-size: 16px;
|
|
|
|
font-weight: bold;
|
|
|
|
cursor: pointer;
|
|
|
|
border: 1px solid black;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-info-compte {
|
|
|
|
width: 50%;
|
|
|
|
height: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-info-exit {
|
|
|
|
width: 10%;
|
|
|
|
height: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal {
|
|
|
|
display: none;
|
|
|
|
position: fixed;
|
|
|
|
z-index: 1;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background-color: rgba(0,0,0,0.4);
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal-content {
|
|
|
|
background-color: #fff;
|
|
|
|
margin: 15% auto;
|
|
|
|
padding: 20px;
|
|
|
|
border: 1px solid #888;
|
|
|
|
width: 80%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.close {
|
|
|
|
color: #aaa;
|
|
|
|
float: right;
|
|
|
|
font-size: 28px;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.close:hover, .close:focus {
|
|
|
|
color: black;
|
|
|
|
text-decoration: none;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|