Skip to content

Commit

Permalink
update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
elringus committed Dec 30, 2023
1 parent 00cdf9e commit b83e1bd
Show file tree
Hide file tree
Showing 3 changed files with 275 additions and 403 deletions.
27 changes: 21 additions & 6 deletions docs/.vitepress/theme/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ pre {
--vp-c-brand-1: #1baeea;
/* Link hover color. */
--vp-c-brand-2: #7ddaff;
/* Border under the navbar. */
--vp-c-gutter: #111;

/*!* Background of main bg. *!*/
/*--vp-c-bg: #1b1d1f;*/
Expand Down Expand Up @@ -245,12 +247,6 @@ table > tfoot:not(:last-child) {
background: none !important;
}

/* remove opacity gradient under navbar */
.curtain,
.aside-curtain {
display: none !important;
}

/* a hack for logo title to keep sidebar bg color */
@media (min-width: 960px) {
.VPNavBar.has-sidebar div.title {
Expand All @@ -267,6 +263,14 @@ table > tfoot:not(:last-child) {
background: rgba(30, 30, 32, 0.5) !important;
}

.VPLocalNav {
background: rgba(255, 255, 255, 0.75) !important;
}

.dark .VPLocalNav {
background: rgba(30, 30, 32, 0.5) !important;
}

/* the blur effect */
.VPNav::after {
content: "";
Expand All @@ -279,6 +283,17 @@ table > tfoot:not(:last-child) {
z-index: -1;
}

.VPLocalNav::after {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
backdrop-filter: saturate(180%) blur(5px);
z-index: -1;
}

/**
* Custom elements
* -------------------------------------------------------------------------- */
Expand Down
Loading

0 comments on commit b83e1bd

Please sign in to comment.