2025-09-18 21:12:50 -06:00
|
|
|
.button-logout {
|
|
|
|
|
background-color: #d32f2f;
|
|
|
|
|
top: 10px;
|
|
|
|
|
right: 10px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
z-index: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.button-logout:hover {
|
|
|
|
|
background-color: #d12020;
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-09 17:17:52 -06:00
|
|
|
.session{
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 10px;
|
|
|
|
|
right: 10px;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 2rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.userName{
|
|
|
|
|
background-color: white;
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
padding: 6px 12px;
|
|
|
|
|
z-index: 1;
|
|
|
|
|
}
|
|
|
|
|
|
2025-09-18 21:12:50 -06:00
|
|
|
@media (max-width: 800px) {
|
|
|
|
|
.button-logout {
|
|
|
|
|
color: transparent;
|
2025-09-21 00:07:55 -06:00
|
|
|
padding: 2rem;
|
2025-09-18 21:12:50 -06:00
|
|
|
font-size: 0px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.button-logout::after {
|
|
|
|
|
content: "";
|
|
|
|
|
border: 3px solid white;
|
|
|
|
|
border-radius: 2px;
|
2025-09-24 17:51:54 -06:00
|
|
|
height: 2rem;
|
|
|
|
|
width: 2rem;
|
2025-09-18 21:12:50 -06:00
|
|
|
position: absolute;
|
|
|
|
|
left: 50%;
|
|
|
|
|
top: 50%;
|
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.button-logout::before {
|
|
|
|
|
content: "";
|
|
|
|
|
border: 2px solid white;
|
|
|
|
|
border-radius: 1px;
|
|
|
|
|
height: 0px;
|
2025-09-24 17:51:54 -06:00
|
|
|
width: 1.5rem;
|
2025-09-18 21:12:50 -06:00
|
|
|
position: absolute;
|
|
|
|
|
left: 50%;
|
|
|
|
|
top: 50%;
|
|
|
|
|
transform: translate(0, -50%);
|
|
|
|
|
}
|
2026-02-09 17:17:52 -06:00
|
|
|
|
2026-02-10 18:42:41 -06:00
|
|
|
.userName{
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0px;
|
|
|
|
|
right: 50px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
@media(max-width:450px){
|
2026-02-09 17:17:52 -06:00
|
|
|
.userName{
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 50px;
|
|
|
|
|
right: 0px;
|
|
|
|
|
}
|
2025-09-18 21:12:50 -06:00
|
|
|
}
|