mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-04-25 15:56:19 -05:00
59 lines
988 B
CSS
59 lines
988 B
CSS
.container {
|
|
z-index: 50;
|
|
display: flex;
|
|
width: 100%;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding: var(--s-4);
|
|
background-color: var(--theme);
|
|
border-radius: var(--rounded);
|
|
cursor: pointer;
|
|
margin-block-start: var(--s-4);
|
|
transition: background-color 0.2s;
|
|
}
|
|
|
|
.container:hover,
|
|
.container:focus {
|
|
background-color: var(--bg-lighter);
|
|
}
|
|
|
|
.active {
|
|
background-color: var(--bg-lighter);
|
|
cursor: auto;
|
|
}
|
|
|
|
.header {
|
|
font-size: var(--fonts-lg);
|
|
font-weight: var(--bold);
|
|
list-style: none;
|
|
user-select: none;
|
|
}
|
|
|
|
.content {
|
|
width: min(24rem, 100%);
|
|
margin-block-start: var(--s-4);
|
|
}
|
|
|
|
.buttonsContainer {
|
|
display: flex;
|
|
gap: var(--s-2);
|
|
margin-block-start: var(--s-4);
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
@media screen and (min-width: 768px) {
|
|
.container {
|
|
width: 48rem;
|
|
}
|
|
}
|