An updated theme (based on Atticus Finch) for ClassicPress
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

90 lines
1.1 KiB

3 years ago
  1. body > header,
  2. body > footer,
  3. #sidebar,
  4. a.post-edit-link,
  5. #post-series,
  6. #respond {
  7. display: none;
  8. }
  9. html,
  10. body,
  11. #container,
  12. #content,
  13. .post,
  14. .page,
  15. .post-content {
  16. width: 100%;
  17. padding: 0;
  18. margin: 0;
  19. color: #000;
  20. }
  21. .post li {
  22. margin-bottom: 6pt;
  23. }
  24. .post-content a {
  25. text-decoration: none;
  26. border-bottom: solid 1pt #99f;
  27. }
  28. #content {
  29. border: none;
  30. }
  31. #content p,
  32. #content ol,
  33. #content ul,
  34. #content li,
  35. #content dl,
  36. #content dd,
  37. #content dt {
  38. font-size: 12pt;
  39. }
  40. .noprint {
  41. display: none;
  42. }
  43. .printonly {
  44. display: block;
  45. }
  46. .printcopyright,
  47. .printurl {
  48. border: solid 1pt #000;
  49. font-size: 8pt;
  50. padding: 6pt;
  51. width: 80%;
  52. margin: 6pt auto;
  53. }
  54. .alignright {
  55. float: right;
  56. margin-left: 10px;
  57. }
  58. .alignleft {
  59. float: left;
  60. margin-right: 10px;
  61. }
  62. .aligncenter {
  63. display: block;
  64. margin: 0 auto;
  65. }
  66. .post-content a:after {
  67. content:" [URL: " attr(href) "] ";
  68. }
  69. /* Remove borders on image links */
  70. .post-content a[href$=jpg]:after,
  71. .post-content a[href$=jpeg]:after,
  72. .post-content a[href$=jpe]:after,
  73. .post-content a[href$=png]:after,
  74. .post-content a[href$=gif]:after {
  75. content:"\A[Image location: " attr(href) "] ";
  76. }