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.

229 lines
3.1 KiB

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