Skip to content

Commit

Permalink
add background glow to hero image
Browse files Browse the repository at this point in the history
  • Loading branch information
maxnth committed Sep 10, 2024
1 parent 8e71b92 commit ce20302
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,22 @@ features:
- title: Easy cross-platform deployment
details: Docker and a single command are all it takes to get OCR4all up and running, regardless of your operating system.
---

<style>
:root {
--vp-home-hero-image-background-image: linear-gradient(90deg, #0077C0 90%, #3380b1 50%);
--vp-home-hero-image-filter: blur(150px);
}

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

@media (min-width: 960px) {
:root {
--vp-home-hero-image-filter: blur(150px);
}
}
</style>

0 comments on commit ce20302

Please sign in to comment.