84 lines
1.1 KiB
CSS
84 lines
1.1 KiB
CSS
.user-container {
|
|
user-select: none;
|
|
cursor: pointer;
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.user {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.user-name {
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
font-size: 14px;
|
|
line-height: 140%;
|
|
color: #c5c7ce;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.icon-container {
|
|
align-items: center;
|
|
display: flex;
|
|
gap: 3px;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.control-elements {
|
|
gap: 8px;
|
|
display: flex;
|
|
|
|
}
|
|
|
|
.you-caption {
|
|
font-weight: 400;
|
|
font-size: 12px;
|
|
line-height: 130%;
|
|
/* identical to box height, or 16px */
|
|
|
|
/* Button_3 */
|
|
|
|
color: #73788c;
|
|
}
|
|
|
|
.user-wrapper {
|
|
position: relative;
|
|
}
|
|
|
|
.user-wrapper:nth-child(1) {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.user-button-container {
|
|
display: flex;
|
|
gap: 8px;
|
|
padding: 8px;
|
|
}
|
|
|
|
.icon-container {
|
|
cursor: pointer;
|
|
padding: 8px;
|
|
}
|
|
|
|
.control-circle {
|
|
width: 8px;
|
|
height: 8px;
|
|
background-color: #798fff;
|
|
border-radius: 50%;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.user-control-caption {
|
|
display: flex;
|
|
gap: 4px;
|
|
font-weight: 400;
|
|
font-size: 10px;
|
|
line-height: 130%;
|
|
align-items: center;
|
|
color: #798fff;
|
|
}
|