74 lines
1.2 KiB
CSS
74 lines
1.2 KiB
CSS
.user-name {
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
color: #131313;
|
|
}
|
|
|
|
.user-email {
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
color: #898989;
|
|
}
|
|
|
|
.user-profile-wrapper {
|
|
position: relative;
|
|
display: inline-block;
|
|
}
|
|
|
|
/* Perfil de usuario */
|
|
.user-profile-container {
|
|
width: 100%;
|
|
overflow: hidden;
|
|
border: 1.5px #E7E7E7 solid;
|
|
background: white;
|
|
display: flex;
|
|
padding: 6px 8px;
|
|
gap: 10px;
|
|
border-radius: 8px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.user-profile-img {
|
|
width: 15%;
|
|
background-color: #D9D9D9;
|
|
border-radius: 6px;
|
|
}
|
|
|
|
.user-profile-content {
|
|
width: 85%;
|
|
display: flex;
|
|
align-items: flex-start;
|
|
flex-direction: column;
|
|
}
|
|
|
|
/* Dropdown */
|
|
.user-dropdown {
|
|
position: absolute;
|
|
top: -60px;
|
|
right: 0;
|
|
background: white;
|
|
border: 1.5px solid #E7E7E7;
|
|
border-radius: 8px;
|
|
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
|
padding: 10px;
|
|
min-width: 120px;
|
|
text-align: center;
|
|
z-index: 1000;
|
|
}
|
|
|
|
.user-button-logout {
|
|
display: block;
|
|
width: 100%;
|
|
background: red;
|
|
color: white;
|
|
border: none;
|
|
padding: 8px;
|
|
border-radius: 5px;
|
|
cursor: pointer;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.user-button-logout:hover {
|
|
background: darkred;
|
|
}
|