styles.css 691 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. .absolute {
  2. position: absolute;
  3. z-index: 10;
  4. }
  5. .invert-colors {
  6. filter: invert(100%);
  7. }
  8. .header-logo {
  9. max-width: 700px;
  10. padding-left: auto;
  11. padding-right: auto;
  12. }
  13. .darken {
  14. filter: brightness(70%);
  15. }
  16. .cover-image {
  17. object-fit: cover;
  18. height: 300px;
  19. }
  20. .fixed-bottom {
  21. position: absolute;
  22. bottom: 15px;
  23. left: 15px;
  24. right: 15px;
  25. }
  26. .promo-heading {
  27. text-align: center;
  28. }
  29. html {
  30. background: url(/37141_fundosite-dark.png) no-repeat center center fixed;
  31. -webkit-background-size: cover;
  32. -moz-background-size: cover;
  33. -o-background-size: cover;
  34. background-size: cover;
  35. }