Skip to content

Commit

Permalink
Add more gradients
Browse files Browse the repository at this point in the history
  • Loading branch information
antonmedv committed Sep 5, 2023
1 parent b8fc217 commit 8c8b13b
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion .vitepress/theme/custom.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
:root {
--vp-home-hero-name-color: #fb9593;
--vp-home-hero-name-color: transparent;
--vp-home-hero-name-background: -webkit-linear-gradient(
120deg,
#F11A7B 10%,
#FEFFAC
);

--vp-home-hero-image-background-image: linear-gradient(
-45deg,
rgba(241, 26, 123, 0.33) 50%,
rgba(254, 255, 172, 0.33) 50%
);
--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 8c8b13b

Please sign in to comment.