style.css 750 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. :root {
  2. font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  3. line-height: 1.5;
  4. font-weight: 400;
  5. color-scheme: light dark;
  6. color: rgba(255, 255, 255, 0.87);
  7. background-color: #242424;
  8. font-synthesis: none;
  9. text-rendering: optimizeLegibility;
  10. -webkit-font-smoothing: antialiased;
  11. -moz-osx-font-smoothing: grayscale;
  12. }
  13. a {
  14. font-weight: 500;
  15. color: #646cff;
  16. text-decoration: inherit;
  17. }
  18. a:hover {
  19. color: #535bf2;
  20. }
  21. html,
  22. body {
  23. height: 100vh;
  24. margin: 0;
  25. padding: 0;
  26. }
  27. #app {
  28. width: 100vw;
  29. height: 100vh;
  30. }
  31. @media (prefers-color-scheme: light) {
  32. :root {
  33. color: #213547;
  34. background-color: #ffffff;
  35. }
  36. a:hover {
  37. color: #747bff;
  38. }
  39. button {
  40. background-color: #f9f9f9;
  41. }
  42. }