43 lines
1010 B
CSS
43 lines
1010 B
CSS
.wrap {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
padding: 0 4px;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.label {
|
|
font-size: 12px;
|
|
color: var(--text-secondary);
|
|
text-transform: uppercase;
|
|
letter-spacing: 1.2px;
|
|
font-weight: 700;
|
|
min-width: 20px;
|
|
}
|
|
|
|
.select {
|
|
appearance: none;
|
|
background: rgba(255, 255, 255, 0.07);
|
|
border: 1px solid var(--glass-border);
|
|
border-radius: 8px;
|
|
color: var(--text-primary);
|
|
font-family: var(--font-sans);
|
|
font-size: 13px;
|
|
font-weight: 600;
|
|
padding: 5px 28px 5px 12px;
|
|
cursor: pointer;
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
|
|
background-repeat: no-repeat;
|
|
background-position: right 10px center;
|
|
transition: border-color 0.2s;
|
|
}
|
|
|
|
.select:focus {
|
|
outline: none;
|
|
border-color: var(--grad-center);
|
|
}
|
|
|
|
.select option {
|
|
background: #1a1a2e;
|
|
}
|