add cool navbar background

This commit is contained in:
ch0ccyra1n 2023-04-17 15:09:18 -07:00
parent 65ab21c307
commit cda2cbbf2a

View file

@ -102,10 +102,6 @@ footer {
} }
/* For header.html */ /* For header.html */
#nav {
background-color: #A51D2D;
}
#nav-list { #nav-list {
height: 100%; height: 100%;
margin: 0; margin: 0;
@ -114,7 +110,6 @@ footer {
overflow: auto; overflow: auto;
width: 25%; width: 25%;
list-style-type: none; list-style-type: none;
background-color: #A51D2D;
} }
.nav-button { .nav-button {
@ -138,6 +133,10 @@ li:first-child {
footer { footer {
padding-left: 25%; padding-left: 25%;
} }
#nav-list {
background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url("/images/bgs/nav-bg.png");
background-size: 100% 100%;
}
} }
/* For super wide screens */ /* For super wide screens */
@ -162,6 +161,8 @@ li:first-child {
position: relative; position: relative;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url("/images/bgs/nav-bg.png");
background-size: 100% 100%;
} }
.nav-li { .nav-li {
width: 100%; width: 100%;
@ -178,6 +179,7 @@ li:first-child {
align-self: flex-end; align-self: flex-end;
display: flex; display: flex;
cursor: pointer; cursor: pointer;
background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url("/images/bgs/nav-bg.png");
} }
} }