refactor: move SVGs and style.css to static/assets/ and update references
This commit is contained in:
132
static/assets/style.css
Normal file
132
static/assets/style.css
Normal file
@@ -0,0 +1,132 @@
|
||||
@import 'tailwindcss';
|
||||
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&display=swap');
|
||||
@import '@toolwind/anchors';
|
||||
|
||||
@source ".";
|
||||
@source "../web/**/*.templ";
|
||||
|
||||
@theme {
|
||||
--color-background: light-dark(#ffffff, #080808);
|
||||
--color-background-sidebar: light-dark(#fafaf9, #0f0f0f);
|
||||
--color-background-header: light-dark(#ffffff, #141414);
|
||||
--color-background-surface: light-dark(#f5f5f4, #202020);
|
||||
--color-background-button: light-dark(#ffffff, #1a1a1a);
|
||||
--color-background-button-hover: light-dark(#f5f5f4, #252525);
|
||||
|
||||
--color-foreground-muted: light-dark(#6b7280, #6a6b70);
|
||||
--color-foreground: light-dark(#1f2937, #f8f9fa);
|
||||
|
||||
--color-accent: #0466c8;
|
||||
--color-border: light-dark(rgba(0, 0, 0, 0.08), rgba(255, 255, 255, 0.08));
|
||||
--color-surface-hover: light-dark(rgba(0, 0, 0, 0.04), rgba(255, 255, 255, 0.04));
|
||||
}
|
||||
|
||||
:root {
|
||||
color-scheme: light dark;
|
||||
|
||||
--bg: var(--color-background);
|
||||
--panel: light-dark(#f5f5f4, #181818);
|
||||
--panel-soft: light-dark(#e7e5e4, #202020);
|
||||
--header: light-dark(#ffffff, #101010);
|
||||
--text: light-dark(#1c1917, #e7e5e4);
|
||||
--text-muted: light-dark(#57534e, #a8a29e);
|
||||
--text-faint: light-dark(#a8a29e, #78716c);
|
||||
--accent: var(--color-accent);
|
||||
--danger: #dc2626;
|
||||
--surface-search: light-dark(#f5f5f4, #181818);
|
||||
--surface-search-focus-border: light-dark(rgba(12, 10, 9, 0.12), rgba(255, 255, 255, 0.12));
|
||||
--surface-thumb: light-dark(#e7e5e4, #44403c);
|
||||
--surface-input: light-dark(#ffffff, #181818);
|
||||
--surface-input-focus: light-dark(#ffffff, #181818);
|
||||
--surface-tab-hover: light-dark(#e7e5e4, #202020);
|
||||
--surface-tab-active: light-dark(#1c1917, #fafaf9);
|
||||
--text-tab-active: light-dark(#fafaf9, #0c0a09);
|
||||
--surface-select: light-dark(#ffffff, #181818);
|
||||
--surface-search-view-all: light-dark(#f5f5f4, #181818);
|
||||
--text-on-accent: light-dark(#fafaf9, #0c0a09);
|
||||
--overlay-subtle: light-dark(rgba(0, 0, 0, 0.04), rgba(255, 255, 255, 0.04));
|
||||
--shadow-subtle: light-dark(0 1px 2px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.2));
|
||||
--shadow-card: light-dark(0 4px 12px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.3));
|
||||
--shadow-card-hover: light-dark(0 8px 24px rgba(0, 0, 0, 0.12), 0 8px 24px rgba(0, 0, 0, 0.4));
|
||||
--space-1: 0.25rem;
|
||||
--space-2: 0.5rem;
|
||||
--space-3: 0.75rem;
|
||||
--space-4: 1rem;
|
||||
--space-5: 1.25rem;
|
||||
--space-6: 1.5rem;
|
||||
--space-8: 2rem;
|
||||
--poster-max-height: 360px;
|
||||
--font: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
|
||||
--radius: 6px;
|
||||
}
|
||||
|
||||
[data-theme='light'] {
|
||||
color-scheme: light;
|
||||
}
|
||||
|
||||
[data-theme='dark'] {
|
||||
color-scheme: dark;
|
||||
}
|
||||
|
||||
html,
|
||||
body {
|
||||
background-color: var(--color-background);
|
||||
color: var(--text);
|
||||
}
|
||||
|
||||
.scrollbar-hide::-webkit-scrollbar {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.scrollbar-hide {
|
||||
-ms-overflow-style: none;
|
||||
scrollbar-width: none;
|
||||
}
|
||||
|
||||
@media (min-width: 1024px) {
|
||||
.scrollbar-hide::-webkit-scrollbar {
|
||||
display: block;
|
||||
height: 8px;
|
||||
}
|
||||
|
||||
.scrollbar-hide::-webkit-scrollbar-track {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.scrollbar-hide::-webkit-scrollbar-thumb {
|
||||
background: rgba(255, 255, 255, 0.2);
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.scrollbar-hide::-webkit-scrollbar-thumb:hover {
|
||||
background: rgba(255, 255, 255, 0.3);
|
||||
}
|
||||
|
||||
button.in-watchlist .watchlist-icon {
|
||||
fill: currentColor !important;
|
||||
}
|
||||
|
||||
.scrollbar-hide {
|
||||
-ms-overflow-style: auto;
|
||||
scrollbar-width: thin;
|
||||
scrollbar-color: rgba(255, 255, 255, 0.2) rgba(255, 255, 255, 0.05);
|
||||
}
|
||||
}
|
||||
|
||||
.show-controls [data-video-overlay] {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
[data-video-player].fullscreen:not(.show-controls) [data-video-overlay] {
|
||||
opacity: 0 !important;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
[data-video-player].fullscreen:not(.show-controls) {
|
||||
cursor: none;
|
||||
}
|
||||
|
||||
[data-video-player].fullscreen:not(.show-controls) video {
|
||||
cursor: none;
|
||||
}
|
||||
Reference in New Issue
Block a user