Skip to content

Commit

Permalink
docs: updated colored blur
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurfiorette committed Feb 4, 2023
1 parent e213d4c commit 559294e
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion docs/.vitepress/theme/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,17 @@
--vp-home-hero-name-color: transparent;
--vp-home-hero-name-background: -webkit-linear-gradient(120deg, hsl(15, 78%, 53%), hsl(55, 78%, 53%));
--vp-home-hero-image-background-image: -webkit-linear-gradient(45deg, hsl(0, 78%, 53%), hsl(70, 78%, 53%));
--vp-home-hero-image-filter: blur(72px);
--vp-home-hero-image-filter: blur(40px);
}

@media (min-width: 640px) {
:root {
--vp-home-hero-image-filter: blur(56px);
}
}

@media (min-width: 960px) {
:root {
--vp-home-hero-image-filter: blur(72px);
}
}

0 comments on commit 559294e

Please sign in to comment.