theme.css 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. body {
  2. font-family: Garamond, Georgia, serif;
  3. font-size: 24px;
  4. line-height: 34px;
  5. }
  6. p {
  7. text-align: justify;
  8. hyphens: auto;
  9. -moz-hyphens: auto;
  10. }
  11. hr {
  12. border-color: #D3D3D3;
  13. border-width: 1px 0px;
  14. }
  15. a {
  16. color: #6495ED;
  17. text-decoration: none;
  18. }
  19. a:hover {
  20. text-decoration: underline;
  21. }
  22. code, pre {
  23. font-family: Monaco, Menlo, Consolas, monospace;
  24. }
  25. code {
  26. background: #FFFFE0;
  27. font-size: 18px;
  28. padding: 0px 4px;
  29. border-radius: 4px;
  30. }
  31. .code {
  32. padding: 2px 10px;
  33. border-radius: 5px;
  34. }
  35. .code pre {
  36. font-size: 16px;
  37. line-height: 24px;
  38. overflow-x: auto;
  39. }
  40. table {
  41. border-collapse: collapse;
  42. }
  43. td {
  44. padding: 0px 10px;
  45. }
  46. thead tr {
  47. font-weight: bold;
  48. border-bottom: solid 1px #808080;
  49. }
  50. .clearfix:after {
  51. content: " ";
  52. display: block;
  53. height: 0;
  54. clear: both;
  55. }
  56. .header > h1 {
  57. display: inline;
  58. }
  59. .header a {
  60. color: black;
  61. }
  62. .nav {
  63. display: inline;
  64. padding: 0px;
  65. }
  66. .nav li {
  67. list-style: none;
  68. margin: 0px 8px;
  69. float: right;
  70. font-size: 20px;
  71. }
  72. .container {
  73. max-width: 780px;
  74. margin: 0 auto;
  75. }
  76. .footer {
  77. text-align: center;
  78. }
  79. .postbox {
  80. margin-top: 50px;
  81. }
  82. .postbox img {
  83. max-width: 100%;
  84. }
  85. .postbox .title h1 a {
  86. color: black;
  87. }
  88. .postbox .title h1 small {
  89. float: right;
  90. font-size: 16px;
  91. font-weight: normal;
  92. line-height: 22px;
  93. color: #808080;
  94. }
  95. .pager {
  96. list-style: none;
  97. margin: 20px 0px;
  98. text-align: center;
  99. line-height: 20px;
  100. padding: 0px;
  101. }
  102. .pager li > a {
  103. display: inline-block;
  104. }
  105. .pager .previous a {
  106. float: left;
  107. }
  108. .pager .next a {
  109. float: right;
  110. }