main.css 655 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. body {
  2. margin:40px auto;
  3. max-width:800px;
  4. line-height:1.6;
  5. font-size:18px;
  6. font-family: Sans-Serif;
  7. color:#444;
  8. padding: 0em 1em;
  9. }
  10. h1,h2,h3 {
  11. line-height:1.2;
  12. }
  13. h3 a:link {
  14. text-decoration: none;
  15. }
  16. h3 a:visited {
  17. text-decoration: none;
  18. }
  19. h3 a:hover {
  20. text-decoration: none;
  21. }
  22. h3 a:active {
  23. text-decoration: none;
  24. }
  25. .newsfeed {
  26. color: #9400d3;
  27. }
  28. h1.newsfeed {
  29. text-align: center;
  30. }
  31. @media (prefers-color-scheme: dark) {
  32. body {
  33. color:#ebecf7;
  34. background-color:#171b25;
  35. }
  36. h3 a:visited {
  37. color:#a15cb3;
  38. }
  39. h3 a {
  40. color:unset;
  41. }
  42. a:visited {
  43. color:#ac71bb;
  44. }
  45. a {
  46. color:#a7b1fc;
  47. }
  48. }