diff options
| author | Danilo M. <danix@danix.xyz> | 2026-04-16 11:51:46 +0200 |
|---|---|---|
| committer | Danilo M. <danix@danix.xyz> | 2026-04-16 11:51:46 +0200 |
| commit | 5f77662440a041508616fe6da0458b8de1e83b2c (patch) | |
| tree | 13783e54a99fb269d894de63fcf22c9d977bbd76 | |
| parent | 189315fd91800056f7f580c549dbc9f986c4eafa (diff) | |
| download | danixxyz-5f77662440a041508616fe6da0458b8de1e83b2c.tar.gz danixxyz-5f77662440a041508616fe6da0458b8de1e83b2c.zip | |
fix: increase footer opacity to 0.88 for better visual balance with header
| -rw-r--r-- | themes/danix-xyz-hacker/assets/css/main.css | 5 | ||||
| -rw-r--r-- | themes/danix-xyz-hacker/assets/css/main.min.css | 6 |
2 files changed, 11 insertions, 0 deletions
diff --git a/themes/danix-xyz-hacker/assets/css/main.css b/themes/danix-xyz-hacker/assets/css/main.css index 36e7359..e155ac4 100644 --- a/themes/danix-xyz-hacker/assets/css/main.css +++ b/themes/danix-xyz-hacker/assets/css/main.css @@ -188,6 +188,11 @@ html.theme-light { /* border applied via utility classes in templates */ } + /* Footer variant: more opaque */ + footer.frosted-bar { + background-color: rgba(var(--bg2-rgb), 0.88); + } + /* Border utilities for frosted-bar component */ .frosted-bar.border-b, .frosted-bar.border-t { diff --git a/themes/danix-xyz-hacker/assets/css/main.min.css b/themes/danix-xyz-hacker/assets/css/main.min.css index 90f1a10..38f646a 100644 --- a/themes/danix-xyz-hacker/assets/css/main.min.css +++ b/themes/danix-xyz-hacker/assets/css/main.min.css @@ -1289,6 +1289,12 @@ button, /* border applied via utility classes in templates */ } +/* Footer variant: more opaque */ + +footer.frosted-bar { + background-color: rgba(var(--bg2-rgb), 0.88); +} + /* Border utilities for frosted-bar component */ .frosted-bar.border-b, |
