blog.css 727 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. body {
  2. font-family: sans-serif;
  3. background-image: url("/img/bg/tile01.png");
  4. background-repeat: repeat;
  5. }
  6. h1.blog-title {
  7. font-size: 3.0em;
  8. text-decoration: underline;
  9. font-weight: 400;
  10. text-align: center;
  11. margin: auto;
  12. }
  13. .post-separator {
  14. margin-top: 3em;
  15. margin-bottom: 3em;
  16. }
  17. hr.post-separator {
  18. border: 0;
  19. border-radius: 2px;
  20. height: 3px;
  21. max-width: 64em;
  22. background: #333;
  23. background-image: linear-gradient(to right, #ffffff, #333333, #ffffff);
  24. }
  25. .page-links {
  26. margin-left: auto;
  27. margin-right: auto;
  28. max-width: 20em;
  29. text-align: center;
  30. }
  31. .page-links a {
  32. text-decoration: none;
  33. }
  34. .page-links a:visited {
  35. text-decoration: none;
  36. }