Hugo theme.
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.

209 lines
2.7 KiB

  1. body {
  2. background-color: #fff;
  3. color: #000;
  4. width: 600px;
  5. margin: 120px auto;
  6. font-family: "PT Serif", serif;
  7. line-height: 1.0rem;
  8. font-size: 1.3em;
  9. -webkit-font-smoothing: antialiased;
  10. }
  11. div.highlight {
  12. margin: 0 0 2rem 0;
  13. line-height: 1.5rem;
  14. }
  15. a {
  16. color: #6b0000;
  17. text-decoration: none;
  18. }
  19. a:visited {
  20. color: #333;
  21. }
  22. #articles div {
  23. display: block;
  24. border: 0px #777 solid;
  25. padding: 0;
  26. margin: 60px 0;
  27. border-radius: 10px;
  28. line-height: 1.8rem;
  29. }
  30. #articles p {
  31. font-size: 1.2rem;
  32. margin: 1rem 0 0rem 0;
  33. }
  34. #articles .list-date {
  35. font-size: 1.0rem;
  36. text-transform: capitalize;
  37. }
  38. #articles h2 {
  39. line-height: 2.5rem;
  40. margin: 0 0 15px 0;
  41. }
  42. .postmeta, .listmeta {
  43. font-weight: 300;
  44. text-transform: uppercase;
  45. font-size: 0.9rem;
  46. margin: 20px 0;
  47. }
  48. .postmeta {
  49. margin: 1rem 0 3rem 0;
  50. }
  51. .postmeta a, .postmeta a:visited {
  52. color: #333;
  53. }
  54. img {
  55. width: 100%;
  56. margin: 1rem 0 1rem 0;
  57. }
  58. figure {
  59. margin: 20px 0;
  60. padding: 0;
  61. }
  62. figcaption, figcaption h4 {
  63. text-align: right;
  64. font-size: 1.0rem;
  65. font-weight: normal;
  66. }
  67. article {
  68. font-size: 1.1rem;
  69. line-height: 1.9rem;
  70. color: #222;
  71. }
  72. article a {
  73. text-decoration: underline;
  74. color: #4b0000;
  75. }
  76. article figcaption {
  77. text-transform: none;
  78. letter-spacing: 0.0rem;
  79. text-align: right;
  80. font-size: 0.8rem;
  81. }
  82. h1 {
  83. color: #eee;
  84. font-size: 1.0rem;
  85. }
  86. article h1 {
  87. font-size: 2.9rem;
  88. line-height: 3.8rem;
  89. margin: 0 0 50px 0;
  90. color: #6b0000;
  91. }
  92. article #description {
  93. margin: 1rem 0 1rem 0;
  94. font-style: italic;
  95. }
  96. article p {
  97. margin: 0 0 1.3rem 0;
  98. }
  99. article h2 {
  100. margin: 50px 0 15px 0;
  101. }
  102. hr {
  103. border: 1px dotted #aaa;
  104. }
  105. section.footnotes {
  106. margin-top: 3rem;
  107. font-size: 1.0rem;
  108. line-height: 1.5rem;
  109. }
  110. sup {
  111. font-size: 0.9rem;
  112. }
  113. #feedback {
  114. margin-top: 5rem;
  115. font-style: italic;
  116. font-size: 1.0rem;
  117. }
  118. #feedback a, #feedback a:visited {
  119. text-decoration: underline;
  120. }
  121. #site-title {
  122. margin: 0;
  123. font-size: 3.5rem;
  124. line-height: 4.0rem;
  125. color: #6b0000;
  126. font-variant-caps: petite-caps;
  127. }
  128. #site-title a, #site-title a:visited {
  129. text-decoration: none;
  130. text-transform: uppercase;
  131. font-weight: normal;
  132. }
  133. .post-title {
  134. text-transform: none;
  135. }
  136. ul.pagination {
  137. margin: 0;
  138. padding: 0;
  139. }
  140. ul.pagination li {
  141. display: inline;
  142. margin: 0 30px 0 0;
  143. }
  144. ul.pagination a {
  145. width: 20px;
  146. height: 20px;
  147. font-size: 1.7rem;
  148. text-decoration: none;
  149. }
  150. ul.pagination li.active a {
  151. background-color: white;
  152. padding: 5px 10px;
  153. }
  154. ul.pagination li.disabled {
  155. color: #333;
  156. }
  157. blockquote {
  158. margin: 0 0 0 2rem;
  159. padding: 0;
  160. font-style: italic;
  161. }
  162. @media screen and (max-width: 699px) {
  163. body {
  164. width: 90%;
  165. margin: 20px auto;
  166. }
  167. img {
  168. width: 100%;
  169. }
  170. }