Skip to content

Commit

Permalink
feat: add blur effect (#274)
Browse files Browse the repository at this point in the history
* feat: add blur effect
fixes #273

* style: format

* chore: npm update
  • Loading branch information
schmelto authored Sep 27, 2023
1 parent 278458a commit 788a19e
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 27 deletions.
12 changes: 8 additions & 4 deletions css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,10 @@ h3 {
}

.navbar {
background-color: rgba(248, 249, 250, 0.9);
}
background-color: rgba(248, 249, 250, 0.7);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
}

.navbar-nav {
margin-left: auto;
Expand Down Expand Up @@ -421,8 +423,10 @@ a.nav-link:hover {
color: #fff;
}
.navbar {
background-color: rgba(48, 49, 52, 0.9);
}
background-color: rgba(48, 49, 52, 0.7);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
}
.timeline .event:after {
background: #202124;
}
Expand Down
60 changes: 37 additions & 23 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 788a19e

Please sign in to comment.