variables.css 716 B

12345678910111213141516171819202122
  1. /**
  2. * Base Variables
  3. */
  4. :root {
  5. /* Globals */
  6. /* Font Family */
  7. --global--font-primary: var(--font-headings, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif);
  8. --global--font-secondary: var(--font-base, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif);
  9. /* Colors */
  10. --global--color-secondary: #007cba;
  11. --global--color-secondary-hover: #006ba1;
  12. --global--color-tertiary: #FAFAFA;
  13. }
  14. /**
  15. * Repsonsive Variables
  16. */
  17. @media only screen and (min-width: 830px) {
  18. :root {
  19. --responsive--alignwide-width: min(calc(100vw - 2 * var(--global--spacing-horizontal)), 1000px);
  20. }
  21. }