A tumblelog theme for Hugo
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.

235 rivejä
3.2 KiB

  1. body {
  2. background-color: #777;
  3. width: 600px;
  4. margin: 50px auto;
  5. font-family: Helvetica, Arial, sans-serif;
  6. }
  7. a {
  8. color: #333;
  9. text-decoration: none;
  10. }
  11. a:visited {
  12. color: #777;
  13. }
  14. #site-social {
  15. font-size: 1.3rem;
  16. }
  17. .quote {
  18. font-family: monospace;
  19. border: 0px #777 solid;
  20. /*background-color: #eee;*/
  21. font-size: 1.8rem;
  22. line-height: 2.0rem;
  23. /*padding: 20px;*/
  24. margin: 30px 0;
  25. }
  26. .quote-credit {
  27. /*font-style: italic;*/
  28. text-align: right;
  29. font-size: 1.0rem;
  30. }
  31. .list-item {
  32. display: block;
  33. border: 0px #777 solid;
  34. background-color: white;
  35. padding: 10px 20px;
  36. margin: 60px 0;
  37. border-radius: 10px;
  38. }
  39. .list-item img {
  40. margin: 0px 0 20px 0;
  41. border-radius: 10px;
  42. }
  43. .list-quote {
  44. background-color: #444;
  45. color: white;
  46. }
  47. .list-video {
  48. background-color: #000;
  49. color: white;
  50. }
  51. .postmeta, .listmeta {
  52. font-size: 100%;
  53. color: #aaa;
  54. font-family: monospace;
  55. text-align: right;
  56. }
  57. .aside-list {
  58. font-family: Georgia, "Times New Roman", serif;
  59. font-size: 2.7rem;
  60. line-height: 3.5rem;
  61. }
  62. #aside-single {
  63. margin: 10rem 0;
  64. color: white;
  65. font-family: Georgia, "Times New Roman", serif;
  66. font-size: 4.0rem;
  67. line-height: 4.5rem;
  68. }
  69. img {
  70. width: 100%;
  71. border-radius: 10px;
  72. }
  73. figure {
  74. margin: 20px 0;
  75. padding: 0;
  76. }
  77. figcaption {
  78. text-transform: lowercase;
  79. letter-spacing: 0.2rem;
  80. text-align: center;
  81. font-size: 1.8rem;
  82. }
  83. article {
  84. font-size: 1.2rem;
  85. line-height: 1.7rem;
  86. color: #555;
  87. }
  88. article a {
  89. text-decoration: none;
  90. text-decoration-style: dotted;
  91. color: #000;
  92. }
  93. article a:visited {
  94. text-decoration: underline;
  95. text-decoration-style: dotted;
  96. color: #999;
  97. }
  98. article a:hover {
  99. color: #fff;
  100. background-color: #333;
  101. }
  102. article figcaption {
  103. text-transform: none;
  104. letter-spacing: 0.0rem;
  105. text-align: right;
  106. font-size: 0.8rem;
  107. font-weight: 100;
  108. }
  109. h1 {
  110. color: white;
  111. text-transform: lowercase;
  112. }
  113. article h1 {
  114. font-size: 2.0rem;
  115. line-height: 2.4rem;
  116. margin: 50px 0;
  117. }
  118. #site-title {
  119. margin: 50px 0 15px 0;
  120. }
  121. #site-title a, #site-title a:visited {
  122. font-size: 4.0rem;
  123. color: white;
  124. text-decoration: none;
  125. text-transform: lowercase;
  126. }
  127. .tags li {
  128. display: inline;
  129. list-style-type: none;
  130. margin: 0 0 0 10px;
  131. text-transform: lowercase;
  132. }
  133. .tags li a, .tags li a:hover, .tags li a:visited {
  134. color: #777;
  135. text-decoration: none;
  136. }
  137. ul.pagination {
  138. margin: 0;
  139. padding: 0;
  140. }
  141. ul.pagination li {
  142. display: inline;
  143. /*background-color: white;*/
  144. color: white;
  145. /*padding: 10px;*/
  146. margin: 0 30px 0 0;
  147. }
  148. ul.pagination a {
  149. width: 20px;
  150. height: 20px;
  151. font-size: 1.7rem;
  152. font-family: monospace;
  153. color: white;
  154. text-decoration: none;
  155. }
  156. ul.pagination li.active a {
  157. background-color: white;
  158. color: #777;
  159. padding: 5px 10px;
  160. }
  161. ul.pagination li.disabled {
  162. color: #333;
  163. }
  164. ul.tag-cloud {
  165. margin: 30px 0;
  166. padding: 0;
  167. }
  168. ul.tag-cloud li {
  169. display: inline;
  170. margin: 0;
  171. padding: 10px 20px 10px 0;
  172. line-height: 2rem;
  173. }
  174. ul.tag-cloud li a, ul.tag-cloud li a:visited {
  175. color: white;
  176. text-decoration: none;
  177. }
  178. .fa {
  179. margin: 0 15px 0 0;
  180. color: white;
  181. }
  182. header {
  183. margin: 60px 0;
  184. }
  185. @media screen and (max-width: 599px) {
  186. body {
  187. width: 90%;
  188. margin: 20px auto;
  189. }
  190. img {
  191. width: 100%;
  192. }
  193. }