main.css 755 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. body {
  2. font-family: DejaVu Sans Mono, monospace;
  3. margin: 20px auto;
  4. max-width: 800px;
  5. line-height: 1.5em;
  6. font-size: 1.1em;
  7. background-color: #282c34;
  8. color: #bbc2cf;
  9. padding: 0 10px;
  10. hyphens: auto;
  11. }
  12. img {
  13. max-width: 80vw;
  14. }
  15. a {
  16. color: #ff6c6b;
  17. text-decoration: none;
  18. }
  19. a:hover {
  20. color: #ff6c6b;
  21. text-decoration: underline;
  22. }
  23. .underline-links a {
  24. text-decoration: underline;
  25. }
  26. h2 {
  27. display: inline;
  28. line-height: 1.2;
  29. color: #51afef;
  30. font-size: 1.2em;
  31. }
  32. input {
  33. background-color: #282c34;
  34. color: #bbc2cf;
  35. }
  36. .pagination {
  37. margin-right: 1ch;
  38. text-align: center;
  39. }
  40. .pagination ul > li {
  41. list-style: none;
  42. display: inline-block;
  43. padding-left: 1ch;
  44. }