63 lines
975 B
CSS
63 lines
975 B
CSS
.user_section {
|
|
display: flex;
|
|
width: 200px;
|
|
height: auto;
|
|
min-height: 100px;
|
|
padding: 20px;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
gap: 8px;
|
|
}
|
|
|
|
.user_info {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
width: 100%;
|
|
}
|
|
|
|
.user_icon {
|
|
font-size: 40px;
|
|
color: #666;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.text_content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 4px;
|
|
}
|
|
|
|
.user_section h1 {
|
|
margin: 0;
|
|
font-size: 16pt;
|
|
line-height: 1.2;
|
|
}
|
|
|
|
.user_section p {
|
|
margin: 0;
|
|
font-size: 0.9rem;
|
|
color: #666;
|
|
}
|
|
|
|
.logout_button {
|
|
margin-top: 4px;
|
|
padding: 8px 16px;
|
|
background-color: var(--Brand-Purple-Purple, #5F59D4);
|
|
color: white;
|
|
border: none;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
font-size: 14px;
|
|
transition: background-color 0.2s;
|
|
width: 100%;
|
|
}
|
|
|
|
.logout_button:hover {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.logout_button:active {
|
|
background-color: #b71c1c;
|
|
}
|
|
|