index.module.css 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. /**
  2. * CSS files with the .module.css suffix will be treated as CSS modules
  3. * and scoped locally.
  4. */
  5. .heroBanner {
  6. padding: 4rem 0;
  7. display: flex;
  8. flex-direction: column;
  9. align-items: center;
  10. }
  11. .tagline {
  12. font-size: 2rem;
  13. margin-top: 1rem;
  14. text-align: center;
  15. display: flex;
  16. align-items: center;
  17. gap: 6px;
  18. }
  19. .betaBadge {
  20. background-color: var(--ifm-badge-background-color);
  21. border-radius: var(--ifm-badge-border-radius);
  22. color: var(--ifm-badge-color);
  23. font-size: 75%;
  24. font-weight: var(--ifm-font-weight-bold);
  25. line-height: 1;
  26. padding: var(--ifm-badge-padding-vertical) var(--ifm-badge-padding-horizontal);
  27. color: var(--ifm-color-warning-darkest);
  28. border: 1px solid var(--ifm-color-warning-darkest);
  29. }
  30. .betaNotice {
  31. max-width: 600px;
  32. margin: 0 auto 4rem;
  33. padding: 12px;
  34. border-radius: 6px;
  35. border: 1px solid var(--ifm-color-warning-darkest);
  36. background-color: #d99e0022;
  37. }
  38. .description {
  39. margin: 1rem 0;
  40. font-size: 1.3rem;
  41. max-width: 600px;
  42. text-align: center;
  43. opacity: 0.8;
  44. }
  45. @media screen and (max-width: 996px) {
  46. .heroBanner {
  47. padding: 2rem;
  48. }
  49. .ctaButtons {
  50. flex-direction: column;
  51. gap: 24px;
  52. gap: 24px;
  53. }
  54. }
  55. .ctaButtons {
  56. display: flex;
  57. align-items: center;
  58. justify-content: space-around;
  59. max-width: 800px;
  60. margin: auto;
  61. padding-bottom: 4rem;
  62. }