index.css 694 B

123456789101112131415161718192021222324252627282930313233343536
  1. :root {
  2. font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  3. --text-direction: ltr;
  4. --alignment: left;
  5. /* line-height: 1.5;
  6. font-weight: 400;
  7. color-scheme: light dark;
  8. color: rgba(255, 255, 255, 0.87); */
  9. font-synthesis: none;
  10. -webkit-font-smoothing: antialiased;
  11. -moz-osx-font-smoothing: grayscale;
  12. /* color-scheme: light dark; */
  13. /* font-synthesis: none;
  14. text-rendering: optimizeLegibility;
  15. -moz-osx-font-smoothing: grayscale; */
  16. }
  17. html,
  18. body {
  19. width: 100vw;
  20. max-width: 100%;
  21. /* overflow-x: hidden;
  22. overflow-y: auto; */
  23. margin: 0;
  24. padding: 0;
  25. color: #dae0e0;
  26. }
  27. html {
  28. font-size: 1rem;
  29. line-height: 1.4;
  30. background: #000;
  31. }