88 lines
1.2 KiB
CSS
88 lines
1.2 KiB
CSS
![]() |
.selector-container {
|
||
|
height: 100%;
|
||
|
background-color: #111;
|
||
|
}
|
||
|
|
||
|
.selector-header {
|
||
|
padding: 1rem;
|
||
|
border-bottom: 1px solid #333;
|
||
|
}
|
||
|
|
||
|
.selector-logo {
|
||
|
height: 2.5rem;
|
||
|
}
|
||
|
|
||
|
.search-container {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
padding: 0.75rem;
|
||
|
border-bottom: 1px solid #333;
|
||
|
}
|
||
|
|
||
|
.search-icon {
|
||
|
width: 1.25rem;
|
||
|
height: 1.25rem;
|
||
|
margin-right: 0.5rem;
|
||
|
color: #00f3ff;
|
||
|
}
|
||
|
|
||
|
.search-input {
|
||
|
flex: 1;
|
||
|
background: none;
|
||
|
border: none;
|
||
|
color: white;
|
||
|
font-size: 1rem;
|
||
|
}
|
||
|
|
||
|
.search-input::placeholder {
|
||
|
color: #666;
|
||
|
}
|
||
|
|
||
|
.selector-list {
|
||
|
height: calc(100% - 7rem);
|
||
|
overflow-y: auto;
|
||
|
}
|
||
|
|
||
|
.selector-item {
|
||
|
display: flex;
|
||
|
padding: 1rem;
|
||
|
border-bottom: 1px solid #333;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
|
||
|
.selector-item:hover {
|
||
|
background-color: #1a1a1a;
|
||
|
}
|
||
|
|
||
|
.selector-avatar {
|
||
|
width: 3rem;
|
||
|
height: 3rem;
|
||
|
border-radius: 50%;
|
||
|
background-color: #1a1a1a;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
border: 1px solid #00f3ff;
|
||
|
color: #00f3ff;
|
||
|
font-size: 1.25rem;
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
|
||
|
.item-content {
|
||
|
margin-left: 1rem;
|
||
|
flex: 1;
|
||
|
}
|
||
|
|
||
|
.item-title {
|
||
|
color: white;
|
||
|
font-size: 1rem;
|
||
|
font-weight: bold;
|
||
|
margin: 0;
|
||
|
}
|
||
|
|
||
|
.item-subtitle {
|
||
|
color: #666;
|
||
|
font-size: 0.875rem;
|
||
|
margin-top: 0.25rem;
|
||
|
}
|