Skip to content

Commit

Permalink
Merge branch 'dragonman225:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
PatrickG1014 authored Jul 12, 2022
2 parents ab85971 + 2d8c626 commit 0bd607d
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions themes/pure-ejs/assets/css/notablog.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
:root {
--bg: rgb(250, 250, 246);
--bg-blur: rgba(250, 250, 246, 0.4);
}

body {
background: rgb(250, 250, 246);
background: var(--bg);
}

/* Navbar */
Expand All @@ -16,7 +21,7 @@ body {
height: 50px;
padding: 10px 20px;
/* Background blur stuff. */
background-color: rgba(250, 250, 246, 0.4);
background-color: var(--bg-blur);
-webkit-backdrop-filter: blur(20px);
backdrop-filter: blur(20px);
overflow-x: auto;
Expand Down Expand Up @@ -303,7 +308,7 @@ body {
@supports (not (backdrop-filter: blur(20px))) and
(not (-webkit-backdrop-filter: blur(20px))) {
.Navbar {
background-color: white;
background-color: var(--bg);
}
}

Expand Down

0 comments on commit 0bd607d

Please sign in to comment.