diff --git a/media_server/static/index.html b/media_server/static/index.html index f26f526..b325a01 100644 --- a/media_server/static/index.html +++ b/media_server/static/index.html @@ -55,6 +55,11 @@ opacity: 1; } + /* Prevent scrolling when dialog is open */ + body.dialog-open { + overflow: hidden; + } + .container { max-width: 800px; margin: 0 auto; @@ -883,6 +888,32 @@ font-size: 1.5rem; } } + + /* Footer */ + footer { + text-align: center; + padding: 2rem 1rem; + margin-top: 3rem; + border-top: 1px solid var(--border); + color: var(--text-secondary); + font-size: 0.875rem; + } + + footer a { + color: var(--accent); + text-decoration: none; + transition: color 0.2s; + } + + footer a:hover { + color: var(--accent-hover); + text-decoration: underline; + } + + footer .separator { + margin: 0 0.5rem; + color: var(--text-muted); + } @@ -1171,6 +1202,17 @@
+ + +