From: Danilo M. Date: Thu, 16 Apr 2026 09:21:35 +0000 (+0200) Subject: feat: add frosted-bar CSS component for header and footer X-Git-Tag: release_22042026-1342~227 X-Git-Url: https://git.danix.xyz/?a=commitdiff_plain;h=42991dd12faac8f58405898b7356dd27c1c2aee6;p=danix.xyz-2.git feat: add frosted-bar CSS component for header and footer --- diff --git a/themes/danix-xyz-hacker/assets/css/main.css b/themes/danix-xyz-hacker/assets/css/main.css index 72e9cf2..473894d 100644 --- a/themes/danix-xyz-hacker/assets/css/main.css +++ b/themes/danix-xyz-hacker/assets/css/main.css @@ -177,6 +177,18 @@ html.theme-light { box-shadow: 0 0 20px var(--accent-glow); } + /* Frosted glass bar (header/footer) */ + .frosted-bar { + background-color: rgba(12, 21, 32, 0.92); + backdrop-filter: blur(10px); + border: 1px solid var(--border); + box-shadow: 0 0 20px var(--accent-glow); + } + + html.theme-light .frosted-bar { + background-color: rgba(248, 249, 250, 0.92); + } + /* Article type badge styles */ .type-tech { color: var(--type-tech);