Skip to content

Commit

Permalink
Add Navbar styles
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonatandb committed Mar 4, 2024
1 parent 9d11d8c commit b9a92f0
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,46 @@ button {
}


body {
min-height: 100vh;
background-color: var(--clr-gray);
}

header {
padding-block: 1rem;
box-shadow: 0 0 2rem -1rem rgba(0, 0, 0, 0.5);
}

.nav {
display: flex;
flex-direction: column;
gap: 1rem;
align-items: flex-start;
padding-inline: 1rem;
}

.nav-list {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 1.5rem;
}

.btn-header {
background-color: var(--clr-gray);
padding: .5rem;
border-radius: 100vmax;
cursor: pointer;
text-transform: uppercase;
font-weight: 600;
box-shadow: 0 0 1rem rgba(0, 0, 0, 0.25);
}

.btn-header:hover {
transform: scale(1.1);
box-shadow: 0 0 2rem rgba(0, 0, 0, 0.25);
transition: .2s;
}

.normal {
background-color: var(--type-normal);
Expand Down

0 comments on commit b9a92f0

Please sign in to comment.