mirror of
https://git.maid.zone/stuff/soundcloak.git
synced 2026-01-27 13:59:38 +05:00
37 lines
706 B
CSS
37 lines
706 B
CSS
#search-suggestions {
|
|
display: flex;
|
|
position: absolute;
|
|
flex-direction: column;
|
|
margin: 0;
|
|
background-color: var(--secondary);
|
|
padding: .5rem;
|
|
width: -moz-available;
|
|
width: -webkit-fill-available;
|
|
list-style: none;
|
|
}
|
|
|
|
#search-suggestions > ul {
|
|
display: flex;
|
|
position: absolute;
|
|
gap: 1rem;
|
|
margin: 0;
|
|
background-color: var(--secondary);
|
|
padding: 1rem;
|
|
width: -moz-available;
|
|
width: -webkit-fill-available;
|
|
list-style: none;
|
|
}
|
|
|
|
#search-suggestions > li {
|
|
cursor: pointer;
|
|
padding: .5rem;
|
|
|
|
&:hover {
|
|
background-color: var(--0);
|
|
}
|
|
|
|
&::before {
|
|
margin-right: .5rem;
|
|
content: "🔎 ";
|
|
}
|
|
} |