Skip to content

Commit

Permalink
Update style.css
Browse files Browse the repository at this point in the history
  • Loading branch information
Mr-milky-way authored Dec 25, 2023
1 parent 63a0aed commit 0011ff8
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ body {

#menu-items {
margin-left: clamp(4rem, 20vw, 48rem);
position: relative;
z-index: 2;
}

#menu-items:hover > .menu-item {
Expand All @@ -32,4 +34,19 @@ body {
transition: opacity 400ms ease;
}


#menu-background-pattern {
height: 100vh;
width: 100vw;

background-image: radial-gradient(
rgba(255, 255, 255, 0.1) 9%,
transparent 9%
);
background-position: 0% 0%;
background-size: 12vmin 12vmin;

position: absolute;
left: 0px;
top: 0px;
z-index: 1;
}

0 comments on commit 0011ff8

Please sign in to comment.