diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2025-11-14 22:14:00 +0100 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2025-11-14 22:14:00 +0100 |
| commit | 14d496a78d15926ca52e63d1e51641a5f8350c00 (patch) | |
| tree | 22aff03b61e98c64520d413e8daf65803566c257 /static/pages/login/index.css | |
| parent | 54cf8b71c6db92f34a596408e3c00feb0afffa67 (diff) | |
login-page: add login transition
Diffstat (limited to 'static/pages/login/index.css')
| -rw-r--r-- | static/pages/login/index.css | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/static/pages/login/index.css b/static/pages/login/index.css index aa6726e..f4a99ba 100644 --- a/static/pages/login/index.css +++ b/static/pages/login/index.css @@ -3,6 +3,15 @@ overflow: hidden; width: 100%; height: 100%; + z-index: 1000; + position: absolute; + top: 0; + bottom: 0; + transition: top 0.2s ease; +} + +#container.hidden { + top: -100%; } #box { @@ -15,7 +24,7 @@ padding: 0px; box-shadow: #223223aa 1px 1px 4px; border-radius: var(--border-radius); - z-index: 2000; + z-index: 5000; display: grid; grid-template-columns: auto 30px; background: #ffffff99; |