diff options
author | Orangerot <purple@orangerot.dev> | 2025-01-13 07:33:11 +0100 |
---|---|---|
committer | Orangerot <purple@orangerot.dev> | 2025-01-13 07:33:11 +0100 |
commit | e33747e7b3bfdd887d29dd0022586e4a79535fde (patch) | |
tree | ac8d2299356ef1ca5f430428ef6d14622dc33e09 /style.css | |
parent | 98b22a8f9d6bc07ae1287535bcf94a2979ddf784 (diff) |
style: removed inline-css
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 41 |
1 files changed, 34 insertions, 7 deletions
@@ -1,18 +1,14 @@ html, body { margin: 0px; scroll-behavior: smooth; + padding-top: 100dvh; } -canvas { - max-width: 100%; +canvas, video { + max-width: 100%; max-height: 100%; } -video { - width: 100%; - height: 100%; -} - body:not(.import-active) .is-visible-import { display: none !important; } @@ -28,3 +24,34 @@ body:not(.editor-active) .is-visible-editor { body.import-active .is-hidden-import { display: none !important; } + +.hero.is-fullheight { + min-height: 100dvh; +} + +#settings-button { + position: absolute; + right: 30px; + bottom: 30px +} + +#back { + position: absolute; + left: 30px; + top: 30px +} + +#cheese { + position: absolute; + bottom: 30px; + left: 30px; + right: 30px; +} + +aside { + width: 300px; +} + +#settings { + z-index: 200; +} |