summaryrefslogtreecommitdiff
path: root/static/src/style.css
diff options
context:
space:
mode:
authorTim Keller <tjk@tjkeller.xyz>2025-12-09 22:16:48 -0600
committerTim Keller <tjk@tjkeller.xyz>2025-12-09 22:16:57 -0600
commit3e7fdfb6c8a50c59ac933f701526ad1815dded92 (patch)
treed2c699ff93e23d0fe45845a4c2dc05d820ec317b /static/src/style.css
parent39738b84e9164b0f2d01f22440548c4393160013 (diff)
downloadimmich-frame-3e7fdfb6c8a50c59ac933f701526ad1815dded92.tar.xz
immich-frame-3e7fdfb6c8a50c59ac933f701526ad1815dded92.zip
refactor codebase. Reorganize file structure. Replace webpack for vite. Setup setuptools for application. Move closer to distributable appv0.3.0
Diffstat (limited to 'static/src/style.css')
-rw-r--r--static/src/style.css48
1 files changed, 0 insertions, 48 deletions
diff --git a/static/src/style.css b/static/src/style.css
deleted file mode 100644
index b762eb3..0000000
--- a/static/src/style.css
+++ /dev/null
@@ -1,48 +0,0 @@
-@import "tailwindcss" source(none);
-@source "../public/index.html";
-
-:root {
- --font-sans: "Overpass", sans-serif;
- @apply scheme-dark
-}
-
-.svg-btn {
- @apply bg-none border-0 p-0 cursor-pointer
-}
-
-.nav-btn {
- @apply flex items-center justify-center no-underline w-full gap-4 p-3 rounded-full
- hover:text-blue-300 hover:fill-blue-300
- data-selected:text-blue-300 data-selected:fill-blue-300
- data-selected:bg-gray-900
-}
-
-.carousel-cell {
- @apply h-full w-[70vw] mx-3 md:w-[80vw] md:mx-6
-}
-.carousel-img {
- @apply align-middle h-full max-w-full object-contain
-}
-
-.album {
- @apply flex relative h-40 gap-6 p-3 cursor-pointer
- border-y border-slate-800
- data-selected:bg-slate-950 data-selected:hover:bg-slate-900
- hover:bg-gray-900
-}
-
-.rounded-fieldset {
- @apply border border-gray-500 rounded-2xl p-6 flex flex-col gap-4
-}
-.fieldset-header {
- @apply font-bold text-blue-300 fill-blue-300 text-xl
-}
-.settings-label {
- @apply font-medium text-blue-200
-}
-.rounded-input {
- @apply rounded-2xl bg-zinc-800 p-4
-}
-.rounded-btn {
- @apply rounded-full w-fit bg-blue-300 px-4 py-2 text-black fill-black font-medium cursor-pointer flex gap-1
-}