Layout scaffolding for Web apps.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

style.css 622 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. :root {
  2. --base-width: 360px;
  3. --color-background: white;
  4. }
  5. html,
  6. body {
  7. padding: 0;
  8. margin: 0;
  9. font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
  10. Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  11. line-height: 1.75;
  12. }
  13. a {
  14. color: inherit;
  15. text-decoration: none;
  16. }
  17. * {
  18. box-sizing: border-box;
  19. }
  20. @media (prefers-color-scheme: dark) {
  21. :root {
  22. --color-background: black;
  23. }
  24. html {
  25. color-scheme: dark;
  26. }
  27. body {
  28. color: white;
  29. background-color: var(--color-background);
  30. }
  31. }
  32. #__next {
  33. display: contents;
  34. background-color: inherit;
  35. }