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.

220 lines
3.0 KiB

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