custom.css 567 B

123456789101112131415161718192021222324252627
  1. :root {
  2. --vp-home-hero-name-color: transparent;
  3. --vp-home-hero-name-background: -webkit-linear-gradient(120deg, #f15833 30%, #FAA42F);
  4. --vp-home-hero-image-background-image: linear-gradient(-45deg, #aaaaaa 50%, #777777 50%);
  5. --vp-home-hero-image-filter: blur(44px);
  6. --vp-c-brand-1: #f15833;
  7. --vp-c-brand-2: #FAA42F;
  8. --vp-c-brand-3: #f15833;
  9. }
  10. @media (min-width: 640px) {
  11. :root {
  12. --vp-home-hero-image-filter: blur(56px);
  13. }
  14. }
  15. @media (min-width: 960px) {
  16. :root {
  17. --vp-home-hero-image-filter: blur(68px);
  18. }
  19. }
  20. .inline-img img {
  21. display: inline;
  22. }