From 8259d51467eb38fabc3f5611f18db9d18d699eb6 Mon Sep 17 00:00:00 2001 From: p0x games <151543501+p0xx@users.noreply.github.com> Date: Tue, 28 Nov 2023 14:20:56 -0500 Subject: [PATCH] Create navigaton.css --- othercss/navigaton.css | 44 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 othercss/navigaton.css diff --git a/othercss/navigaton.css b/othercss/navigaton.css new file mode 100644 index 0000000..e68c396 --- /dev/null +++ b/othercss/navigaton.css @@ -0,0 +1,44 @@ + .nav { + height: 69px; + position: sticky; + top: 0; + z-index: 9999; + box-shadow: 0px 0px 10px #000; + background-color: #1c1c1c; + font-size: 14px; + } + + .nav-content { + margin-left:2em; + display: flex; + justify-content: left; + height: 100%; + align-items: center; + gap: 15px; + } + + .nav-content a { + color:white; + border-radius: 8px; + padding: 12px; + transition: 0.2s; + } + + .nav-content a:hover { + opacity: calc(0.7); + } + + .login { + color:white; + position: absolute; + right: 2em; + } + + .login a:hover { + opacity: calc(0.7); + } + + /* .nav-home { + left: 15px; position: absolute; + } + */