base.css 318 B

123456789101112131415161718192021
  1. html {
  2. line-height: 1;
  3. background-color: var(--color-bg);
  4. color: var(--color-text);
  5. }
  6. body {
  7. font-family: var(--font-sans);
  8. }
  9. .sr-only {
  10. position: absolute;
  11. width: 1px;
  12. height: 1px;
  13. padding: 0;
  14. margin: -1px;
  15. overflow: hidden;
  16. clip: rect(0, 0, 0, 0);
  17. white-space: nowrap;
  18. border-width: 0;
  19. }