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.

215 lines
2.9 KiB

  1. body {
  2. background-color: #fff;
  3. color: #000;
  4. width: 600px;
  5. margin: 3rem auto;
  6. font-family: Georgia, Times, "Times New Roman", serif;
  7. line-height: 1.2rem;
  8. font-size: 1.7em;
  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.9rem;
  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. font-weight: normal;
  40. font-size: 1.7rem;
  41. line-height: 2.5rem;
  42. margin: 0 0 5px 0;
  43. }
  44. .postmeta, .listmeta {
  45. font-weight: 300;
  46. text-transform: uppercase;
  47. font-size: 0.9rem;
  48. margin: 20px 0;
  49. }
  50. .postmeta {
  51. margin: 1.5rem 0 1.5rem 0;
  52. }
  53. .postmeta a, .postmeta a:visited {
  54. color: #333;
  55. }
  56. img {
  57. width: 100%;
  58. margin: 1rem 0 1rem 0;
  59. }
  60. figure {
  61. margin: 20px 0;
  62. padding: 0;
  63. }
  64. figcaption, figcaption h4 {
  65. text-align: right;
  66. font-size: 1.0rem;
  67. font-weight: normal;
  68. }
  69. article {
  70. font-size: 1.1rem;
  71. line-height: 1.9rem;
  72. color: #222;
  73. }
  74. article a {
  75. text-decoration: underline;
  76. color: #4b0000;
  77. }
  78. article figcaption {
  79. text-transform: none;
  80. letter-spacing: 0.0rem;
  81. text-align: right;
  82. font-size: 0.8rem;
  83. }
  84. h1 {
  85. color: #eee;
  86. font-size: 1.0rem;
  87. }
  88. article h1 {
  89. font-size: 2.4rem;
  90. line-height: 3.0rem;
  91. margin: 6rem 0 4rem 0;
  92. color: #6b0000;
  93. font-weight: 500;
  94. }
  95. article #description {
  96. margin: 1rem 0 1rem 0;
  97. font-style: italic;
  98. }
  99. article p {
  100. margin: 0 0 1.3rem 0;
  101. }
  102. article h2 {
  103. margin: 50px 0 15px 0;
  104. color: #6b0000;
  105. font-weight: 500;
  106. }
  107. hr {
  108. border: 1px dotted #aaa;
  109. }
  110. section.footnotes {
  111. margin-top: 3rem;
  112. font-size: 1.0rem;
  113. line-height: 1.5rem;
  114. }
  115. sup {
  116. font-size: 0.9rem;
  117. }
  118. #feedback {
  119. margin-top: 5rem;
  120. font-style: italic;
  121. font-size: 1.0rem;
  122. }
  123. #feedback a, #feedback a:visited {
  124. text-decoration: underline;
  125. }
  126. #site-title {
  127. margin: 0;
  128. font-size: 3.5rem;
  129. line-height: 4.0rem;
  130. font-weight: 500;
  131. color: #6b0000;
  132. font-variant-caps: petite-caps;
  133. }
  134. #site-title a, #site-title a:visited {
  135. text-decoration: none;
  136. text-transform: uppercase;
  137. font-weight: normal;
  138. }
  139. .post-title {
  140. text-transform: none;
  141. }
  142. ul.pagination {
  143. margin: 0;
  144. padding: 0;
  145. }
  146. ul.pagination li {
  147. display: inline;
  148. margin: 0 30px 0 0;
  149. }
  150. ul.pagination a {
  151. width: 20px;
  152. height: 20px;
  153. font-size: 1.7rem;
  154. text-decoration: none;
  155. }
  156. ul.pagination li.active a {
  157. background-color: white;
  158. padding: 5px 10px;
  159. }
  160. ul.pagination li.disabled {
  161. color: #333;
  162. }
  163. blockquote {
  164. margin: 0 0 0 2rem;
  165. padding: 0;
  166. font-style: italic;
  167. }
  168. @media screen and (max-width: 699px) {
  169. body {
  170. width: 90%;
  171. margin: 20px auto;
  172. }
  173. img {
  174. width: 100%;
  175. }
  176. }