mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-03-21 18:04:39 -05:00
36 lines
663 B
CSS
36 lines
663 B
CSS
.searchInputContainer {
|
|
display: flex;
|
|
height: 1rem;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: var(--s-5) var(--s-4);
|
|
background-color: var(--bg-lighter);
|
|
border-radius: var(--rounded);
|
|
}
|
|
|
|
.searchInputContainer:focus-within {
|
|
outline: 2px solid var(--theme);
|
|
}
|
|
|
|
.searchInput {
|
|
width: 12rem;
|
|
height: 2rem;
|
|
flex-grow: 1;
|
|
border: none;
|
|
background-color: var(--bg-lighter);
|
|
color: var(---text);
|
|
font-size: var(--fonts-sm);
|
|
outline: none;
|
|
}
|
|
|
|
.searchInput::placeholder {
|
|
color: var(--text-lighter);
|
|
font-weight: var(--semi-bold);
|
|
letter-spacing: 0.5px;
|
|
}
|
|
|
|
.searchInputIcon {
|
|
height: 1.25rem;
|
|
color: var(--text);
|
|
}
|