custom.css 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. /* stylelint-disable docusaurus/copyright-header */
  2. /**
  3. * Any CSS included here will be global. The classic template
  4. * bundles Infima by default. Infima is a CSS framework designed to
  5. * work well for content-centric websites.
  6. */
  7. /* You can override the default Infima variables here. */
  8. :root {
  9. --ifm-color-primary: #2b86cc;
  10. --ifm-color-primary-dark: #2779b8;
  11. --ifm-color-primary-darker: #2572ad;
  12. --ifm-color-primary-darkest: #1e5e8f;
  13. --ifm-color-primary-light: #3a92d6;
  14. --ifm-color-primary-lighter: #4498d8;
  15. --ifm-color-primary-lightest: #63a9de;
  16. --ifm-code-font-size: 95%;
  17. --ifm-navbar-item-padding-horizontal: 8px;
  18. }
  19. .docusaurus-highlight-code-line {
  20. background-color: rgb(72, 77, 91);
  21. display: block;
  22. margin: 0 calc(-1 * var(--ifm-pre-padding));
  23. padding: 0 var(--ifm-pre-padding);
  24. }
  25. /**
  26. * Navbar styles
  27. */
  28. .navbar .react-toggle {
  29. margin-left: var(--ifm-navbar-item-padding-horizontal)
  30. }
  31. /**
  32. * Home page styles
  33. */
  34. .features {
  35. display: flex;
  36. align-items: center;
  37. padding: 2rem 0;
  38. width: 100%;
  39. }
  40. .hero-banner {
  41. padding: 4rem 0;
  42. text-align: center;
  43. position: relative;
  44. overflow: hidden;
  45. }
  46. @media screen and (max-width: 966px) {
  47. .hero-banner {
  48. padding: 2rem;
  49. }
  50. }
  51. .features {
  52. display: flex;
  53. align-items: center;
  54. padding: 2rem 0;
  55. width: 100%;
  56. }
  57. .feature-image {
  58. height: 200px;
  59. width: 200px;
  60. }
  61. .buttons {
  62. display: flex;
  63. align-items: center;
  64. justify-content: center;
  65. }
  66. /**
  67. * Download page styles
  68. */
  69. main.download {
  70. padding: 2rem 0;
  71. }
  72. main.download .card {
  73. padding: 0 1rem;
  74. }
  75. main.download section.sponsors {
  76. margin-top: 1rem;
  77. }
  78. main.download .download-links {
  79. list-style-type: none;
  80. }
  81. main.download .inline-image {
  82. padding-right: 8px;
  83. }