From 913b9d852a7f2b4017b5d0f14d9f0dfd41ec98c0 Mon Sep 17 00:00:00 2001 From: TreetopFlyer Date: Mon, 16 Aug 2021 12:01:43 -0400 Subject: [PATCH] dimmer --- index.html | 29 ++++++++++++++++++++++++++--- 1 file changed, 26 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index 4f7af07..f57c928 100644 --- a/index.html +++ b/index.html @@ -292,7 +292,7 @@ nav bottom: 0; right: 0px; width: 200px; - z-index: 10; + z-index: 200; height: 66px; overflow: hidden; transition: height 0.4s; @@ -415,17 +415,40 @@ nav > ul width:100%; transform: translateY(-50%); transition:left 0.4s 0.5s; + list-style-type: none; +} +nav > ul a +{ + text-decoration: none !important; + color:black !important; } [nav-open] nav > ul { left:0%; } + +.Dim +{ + box-shadow: 0px 0px 10px rgb(0 0 0 / 20%); + z-index: 100; + position: fixed; + right: 0; + bottom: 0%; + height: 65px; + width: 100%; + background: #fff; + opacity: 0.8; + transition: height 0.4s; +} +[nav-open] .Dim +{ + height:100%; +} +