theme.css 1.5 KB

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