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.

184 lines
2.4 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.2rem;
  36. /* border: 1px red solid; */
  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. #site-title {
  103. margin: 0;
  104. font-size: 3.5rem;
  105. line-height: 4.0rem;
  106. color: #6b0000;
  107. font-variant-caps: petite-caps;
  108. }
  109. #site-title a, #site-title a:visited {
  110. text-decoration: none;
  111. text-transform: uppercase;
  112. font-weight: normal;
  113. }
  114. .post-title {
  115. text-transform: none;
  116. }
  117. ul.pagination {
  118. margin: 0;
  119. padding: 0;
  120. }
  121. ul.pagination li {
  122. display: inline;
  123. margin: 0 30px 0 0;
  124. }
  125. ul.pagination a {
  126. width: 20px;
  127. height: 20px;
  128. font-size: 1.7rem;
  129. text-decoration: none;
  130. }
  131. ul.pagination li.active a {
  132. background-color: white;
  133. padding: 5px 10px;
  134. }
  135. ul.pagination li.disabled {
  136. color: #333;
  137. }
  138. blockquote {
  139. margin: 0 0 0 2rem;
  140. padding: 0;
  141. font-style: italic;
  142. }
  143. @media screen and (max-width: 699px) {
  144. body {
  145. width: 90%;
  146. margin: 20px auto;
  147. }
  148. img {
  149. width: 100%;
  150. }
  151. }