My ham website
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.

225 lines
3.1 KiB

6 years ago
6 years ago
6 years ago
  1. body {
  2. font-family: Hack, Menlo, Monaco, Ubuntu Mono, monospace;
  3. font-size: 14px;
  4. color: #ddd;
  5. background: #222;
  6. padding: 20px;
  7. margin: 0;
  8. display: flex;
  9. justify-content: center;
  10. line-height: 1.5;
  11. }
  12. h1,
  13. h2,
  14. h3,
  15. h4,
  16. h5,
  17. h6,
  18. p,
  19. code,
  20. kbd,
  21. tt,
  22. var {
  23. font-size: 14px;
  24. }
  25. article h1,
  26. h2,
  27. h3,
  28. h4,
  29. h5,
  30. h6 {
  31. padding: 20px 0 20px 0
  32. }
  33. .entry-content h1 {
  34. display: none;
  35. }
  36. #disqus_thread {
  37. margin-top: 100px;
  38. padding-top: 1em;
  39. }
  40. blockquote {
  41. border-left: 5px solid #ddd;
  42. margin: 0;
  43. padding: 0 20px 0 20px;
  44. margin: 0 0 40px 0;
  45. }
  46. .container {
  47. display: flex;
  48. flex-direction: column;
  49. width: 100%;
  50. max-width: 700px;
  51. align-items: center;
  52. }
  53. header {
  54. padding-top: 20px;
  55. padding-bottom: 40px;
  56. }
  57. footer.footer-container {
  58. align-self: left;
  59. padding-top: 120px;
  60. }
  61. div.site {
  62. align-items: center;
  63. width: 100%;
  64. }
  65. a {
  66. color: #fff;
  67. }
  68. a:hover {
  69. color: #999;
  70. }
  71. a:visited {
  72. color: #eee;
  73. }
  74. code {
  75. color: #ddd;
  76. background: #333;
  77. }
  78. pre {
  79. background: #333;
  80. }
  81. .main-menu a,
  82. .social-menu a {
  83. color: #ddd;
  84. }
  85. .main-menu-container {
  86. margin-top: 0em;
  87. }
  88. nav {
  89. width: 100%;
  90. }
  91. nav ul {
  92. padding: 0 0 100px 0;
  93. margin: 0;
  94. }
  95. nav ul li {
  96. font-size: 14px;
  97. display: inline-block;
  98. text-transform: lowercase;
  99. }
  100. nav ul li.logo a {
  101. text-decoration: none;
  102. }
  103. nav ul li a:hover {
  104. border-bottom: none;
  105. color: #999;
  106. }
  107. .title {
  108. margin-bottom: 0;
  109. text-transform: none;
  110. color: #ddd;
  111. padding-bottom: 0;
  112. }
  113. main {
  114. align-self: left;
  115. }
  116. div.meta {
  117. padding-right: 10px;
  118. }
  119. .list-item-header h3,
  120. header {
  121. padding: 0;
  122. margin: 0;
  123. }
  124. article li {
  125. list-style-type: square;
  126. }
  127. .list {
  128. display: -webkit-box;
  129. display: -ms-flexbox;
  130. display: flex;
  131. -webkit-box-orient: vertical;
  132. -webkit-box-direction: normal;
  133. -ms-flex-flow: column nowrap;
  134. flex-flow: column nowrap;
  135. margin: 0;
  136. padding: 0;
  137. list-style: none;
  138. }
  139. .list-item article {
  140. display: -webkit-box;
  141. display: -ms-flexbox;
  142. display: flex;
  143. -webkit-box-orient: horizontal;
  144. -webkit-box-direction: normal;
  145. -ms-flex-flow: row nowrap;
  146. flex-flow: row nowrap;
  147. -webkit-box-align: baseline;
  148. -ms-flex-align: baseline;
  149. align-items: baseline;
  150. }
  151. pre {
  152. padding: 20px 10px;
  153. }
  154. code {
  155. color: lightcoral;
  156. }
  157. pre>code {
  158. color: #ddd;
  159. }
  160. .mute {
  161. color: #999;
  162. }
  163. /*
  164. Hack Font
  165. */
  166. @font-face {
  167. font-family: 'Hack';
  168. src: url('fonts/hack-regular.woff2?sha=e700a30') format('woff2'), url('fonts/hack-regular.woff?sha=e700a30') format('woff');
  169. font-weight: 400;
  170. font-style: normal;
  171. }
  172. @font-face {
  173. font-family: 'Hack';
  174. src: url('fonts/hack-bold.woff2?sha=e700a30') format('woff2'), url('fonts/hack-bold.woff?sha=e700a30') format('woff');
  175. font-weight: 700;
  176. font-style: normal;
  177. }
  178. @font-face {
  179. font-family: 'Hack';
  180. src: url('fonts/hack-italic.woff2?sha=e700a30') format('woff2'), url('fonts/hack-italic.woff?sha=e700a30') format('woff');
  181. font-weight: 400;
  182. font-style: italic;
  183. }
  184. @font-face {
  185. font-family: 'Hack';
  186. src: url('fonts/hack-bolditalic.woff2?sha=e700a30') format('woff2'), url('fonts/hack-bolditalic.woff?sha=e700a30') format('woff');
  187. font-weight: 700;
  188. font-style: italic;
  189. }