style.css 764 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. body {
  2. font-family: monospace;
  3. font-size: 100%;
  4. background-color: white;
  5. color: #111;
  6. width: 80%;
  7. min-width: 400px;
  8. min-height: 200px;
  9. padding: 1em;
  10. margin: 5% 10%;
  11. border: thin solid gray;
  12. border-radius: 5px;
  13. display: block;
  14. }
  15. a:link { color: blue; text-decoration: none; }
  16. a:hover { color: blue; text-decoration: underline; }
  17. a:visited { color: blue; }
  18. h1 a { color: inherit !important }
  19. h2 a { color: inherit !important }
  20. h3 a { color: inherit !important }
  21. h4 a { color: inherit !important }
  22. h5 a { color: inherit !important }
  23. h6 a { color: inherit !important }
  24. #menu li {
  25. display: inline;
  26. }
  27. #post-list {
  28. margin-bottom: 1em;
  29. margin-top: 1em;
  30. }
  31. pre {
  32. margin: 2em 1em 2em 4em;
  33. }