white-on-black.css 387 B

12345678910111213141516171819202122232425
  1. /* This code is dedicated to the Public Domain. */
  2. body {
  3. line-height: 1.5;
  4. font-family: monospace;
  5. background-color: black;
  6. color: white;
  7. }
  8. h1, h2, h3, p {
  9. font-size: inherit;
  10. font-weight: inherit;
  11. }
  12. pre {
  13. font-family: monospace;
  14. tab-size: 4;
  15. margin-left: 2ch;
  16. }
  17. a {
  18. font-family: inherit;
  19. color: inherit;
  20. text-decoration: underline;
  21. }