mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-03-21 18:04:39 -05:00
104 lines
1.8 KiB
CSS
104 lines
1.8 KiB
CSS
.customThemeSelector {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--s-4);
|
|
padding: var(--s-4);
|
|
border: var(--border-style);
|
|
border-radius: var(--radius-field);
|
|
background-color: var(--color-bg-medium);
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.customThemeSelectorSupporter {
|
|
display: none;
|
|
}
|
|
|
|
.customThemeSelectorNoSupporter {
|
|
position: absolute;
|
|
inset: 0;
|
|
z-index: 5;
|
|
backdrop-filter: blur(3px);
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
}
|
|
|
|
.customThemeSelectorInfo {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--s-2);
|
|
margin-bottom: var(--s-4);
|
|
text-align: center;
|
|
background-color: var(--color-bg);
|
|
padding: var(--s-2) var(--s-4);
|
|
border-block: var(--border-style);
|
|
}
|
|
|
|
.customThemeSelectorActions {
|
|
display: grid;
|
|
gap: var(--s-2);
|
|
grid-template-columns: 1fr auto;
|
|
}
|
|
|
|
.themeSliders {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--s-2);
|
|
}
|
|
|
|
.themeSliderRow {
|
|
display: grid;
|
|
grid-template-columns: 40% auto;
|
|
grid-template-rows: auto auto;
|
|
gap: var(--s-1) var(--s-2);
|
|
align-items: center;
|
|
}
|
|
|
|
.hueSlider::-webkit-slider-runnable-track {
|
|
background: linear-gradient(
|
|
to right,
|
|
oklch(65% 0.15 0),
|
|
oklch(65% 0.15 60),
|
|
oklch(65% 0.15 120),
|
|
oklch(65% 0.15 180),
|
|
oklch(65% 0.15 240),
|
|
oklch(65% 0.15 300),
|
|
oklch(65% 0.15 360)
|
|
) !important;
|
|
}
|
|
|
|
.hueSlider::-moz-range-track {
|
|
background: linear-gradient(
|
|
to right,
|
|
oklch(65% 0.15 0),
|
|
oklch(65% 0.15 60),
|
|
oklch(65% 0.15 120),
|
|
oklch(65% 0.15 180),
|
|
oklch(65% 0.15 240),
|
|
oklch(65% 0.15 300),
|
|
oklch(65% 0.15 360)
|
|
) !important;
|
|
}
|
|
|
|
.chatColorPreview {
|
|
color: oklch(from var(--color-text-accent) l c var(--_chat-h));
|
|
}
|
|
|
|
.themeShare {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--s-1);
|
|
}
|
|
|
|
.themeShareActions {
|
|
display: flex;
|
|
gap: var(--s-2);
|
|
align-items: center;
|
|
}
|
|
|
|
.themeShareInput input {
|
|
flex: 1;
|
|
min-width: 0;
|
|
}
|