From bcde3903c422815ead74c2a6289a5d2cffad5527 Mon Sep 17 00:00:00 2001 From: WubzyGD Date: Fri, 21 Jan 2022 17:39:27 -0700 Subject: [PATCH] fixed sidebar; reflow z css and main container --- index.html | 8 +++++++- styles/context.css | 1 + styles/modal.css | 4 ++-- styles/sidebar.css | 24 +++++++++++------------- styles/styles.css | 5 ++--- 5 files changed, 23 insertions(+), 19 deletions(-) diff --git a/index.html b/index.html index 0d6f588..52ab5b1 100755 --- a/index.html +++ b/index.html @@ -22,7 +22,13 @@
- +
diff --git a/styles/context.css b/styles/context.css index 502b0ba..c92ac43 100755 --- a/styles/context.css +++ b/styles/context.css @@ -7,6 +7,7 @@ position: absolute; background-color: #101010df; padding: 7px 5px; + z-index: 2; } #ctx hr { diff --git a/styles/modal.css b/styles/modal.css index 0bdb6c6..b580c66 100755 --- a/styles/modal.css +++ b/styles/modal.css @@ -9,7 +9,7 @@ border: 1px solid #af2188a4; background-color: #171717da; padding: 6px 8px; - z-index: 3; + z-index: 4; max-width: 50%; } @@ -65,7 +65,7 @@ top: 0; left: 0; background-color: #1717176d; - z-index: 2; + z-index: 3; } .error-modal {max-width: 45%;} diff --git a/styles/sidebar.css b/styles/sidebar.css index dd46960..180b5b6 100644 --- a/styles/sidebar.css +++ b/styles/sidebar.css @@ -1,17 +1,15 @@ #sidebar { - width: 10%; + width: 180px; border-right: 1px solid #5d60caaf; - margin: 0 0; - padding: 12px 14px; + margin: 26px 0 0 0; + padding: 0 14px 12px 14px; + position: fixed; + z-index: 1; + overflow-x: hidden; + top: 0; + left: 0; + background-color: #0000006d; + height: 100%; } -#container { - flex-basis: 90%; -} - -#master { - display: flex; - align-items: stretch; - align-content: flex-start; - justify-content: stretch; -} \ No newline at end of file +#container {margin-left: 200px;} \ No newline at end of file diff --git a/styles/styles.css b/styles/styles.css index 8e3d08a..b7e9a01 100755 --- a/styles/styles.css +++ b/styles/styles.css @@ -11,7 +11,6 @@ body { color: #d3d3d3; font-family: 'Montserrat', sans-serif; overflow-y: overlay; - width: calc(100vw) - 10px; } .rise { @@ -32,7 +31,7 @@ body { #title { font-family: 'Nunito', sans-serif; margin: 0 0; - z-index: 1; + z-index: 2; animation: shine 5s linear infinite; background: linear-gradient(to right, #5d60ca 20%, #171717 35%, #171717 35%, #5d60ca 50%, #5d60ca 50%, #af2188 75%, #5d60ca 90%); background-size: 200% auto; @@ -55,7 +54,7 @@ body { width: 100vw; overflow: hidden; background-color: #0000006d; - z-index: 1; + z-index: 2; -webkit-app-region: drag; }