_variables.scss 888 B

1234567891011121314151617181920212223242526272829303132333435
  1. // Variables needed to style the error message for browsers that don't support CSS variables.
  2. $baseFont: -apple-system, BlinkMacSystemFont, 'San Francisco', 'Segoe UI', Roboto, Ubuntu, 'Helvetica Neue', Arial, sans-serif;
  3. $textColor: #333;
  4. html {
  5. --baseFont: #{$baseFont};
  6. --monoFont: 'SF Mono', 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace;
  7. --boldFontWeight: 500;
  8. --bolderFontWeight: 600;
  9. --textColorRed: #f44336;
  10. --splashText: var(--loadingText);
  11. --selectionText: #fff;
  12. --transparentSelectionText: rgba(255, 255, 255, 0.9);
  13. --notifColor: #fff;
  14. --notifColorLight: #ccc;
  15. --maxWidth: 80rem;
  16. --headerHeight: 3rem;
  17. --sidebarWidth: 20rem;
  18. --sidebarMediumWidth: 16rem;
  19. --focusBackground: #e5e5e5;
  20. --focusBorder: #d4d4d4;
  21. --focusText: #000;
  22. --contentZ: 1;
  23. --sidebarZ: 2;
  24. --headerZ: 3;
  25. --noticeZ: 4;
  26. --hoverZ: 5;
  27. }