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.

672 lines
14 KiB

9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
  1. /* Reset */
  2. html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{border:0;font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}table{border-collapse:collapse;border-spacing:0}
  3. *, *:before, *:after { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }
  4. /* Clearfix */
  5. .clearfix:after {
  6. content: "";
  7. display: table;
  8. clear: both;
  9. }
  10. .hidden { display: none; }
  11. /* latin */
  12. @font-face {
  13. font-family: 'Ubuntu Mono';
  14. font-style: normal;
  15. font-weight: 400;
  16. src: local('Ubuntu Mono'), local('UbuntuMono-Regular'), url('../fonts/ubunut-mono.woff') format('woff2');
  17. unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
  18. }
  19. /* Icons */
  20. @font-face {
  21. font-family: 'icons';
  22. src: url('../fonts/icons.eot');
  23. src: url('../fonts/icons.eot#iefix') format('embedded-opentype'),
  24. url('../fonts/icons.woff') format('woff'),
  25. url('../fonts/icons.ttf') format('truetype'),
  26. url('../fonts/icons.svg#icons') format('svg');
  27. font-weight: normal;
  28. font-style: normal;
  29. }
  30. [class^="icon-"]:before, [class*=" icon-"]:before {
  31. font-family: "icons";
  32. font-style: normal;
  33. font-weight: normal;
  34. speak: none;
  35. display: inline-block;
  36. text-decoration: inherit;
  37. text-align: center;
  38. font-variant: normal;
  39. text-transform: none;
  40. line-height: 1em;
  41. }
  42. .icon-facebook:before { content: '\e802'; }
  43. .icon-facebook-squared:before { content: '\e800'; }
  44. .icon-twitter:before { content: '\e801'; }
  45. .icon-twitter-1:before { content: '\e804'; }
  46. .icon-facebook-circled:before { content: '\e805'; }
  47. .icon-twitter-circled:before { content: '\e806'; }
  48. .icon-facebook-rect:before { content: '\e803'; }
  49. /* Spacing */
  50. .post h1, h3, h4, h5, p, .post-body ul, pre {
  51. margin-bottom: 20px;
  52. }
  53. /* Base */
  54. html, body { height: 100%; }
  55. body {
  56. /*font:16px/1 "Helvetica Neue", Helvetica, Arial, sans-serif;*/
  57. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  58. font-size: 16px;
  59. color: #666;
  60. -webkit-font-smoothing: antialiased;
  61. text-rendering: optimizeLegibility;
  62. }
  63. h1 {
  64. font-size: 30px;
  65. letter-spacing: -1px;
  66. color: #222;
  67. font-weight: bold;
  68. }
  69. h2 {
  70. font: italic 19px/1.3em Georgia,serif;
  71. color: #bbb;
  72. }
  73. .profile #wrapper {
  74. padding: 100px 40px 0px;
  75. max-width: 600px;
  76. margin: 0 auto;
  77. }
  78. .profile #header {
  79. padding-bottom: 40px;
  80. text-align: center;
  81. position: relative;
  82. }
  83. .profile #avatar {
  84. display: inline-block;
  85. width: 80px;
  86. height: 80px;
  87. border-radius: 50%;
  88. margin-bottom: 20px;
  89. }
  90. .profile h1 {
  91. font-weight: 400;
  92. letter-spacing: 0px;
  93. font-size: 20px;
  94. color: #222;
  95. }
  96. .profile h2 {
  97. font-size: 20px;
  98. font-weight: 300;
  99. color: #aaa;
  100. margin-top: 10px;
  101. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  102. font-style: normal;
  103. }
  104. nav.main-nav {
  105. padding: 20px 20px 0;
  106. /*max-width: 600px;*/
  107. /*width:100%;*/
  108. background: #fff;
  109. background: rgba(255,255,255,.90);
  110. margin: 0 auto;
  111. text-align: right;
  112. /*position: fixed;*/
  113. z-index: 100;
  114. }
  115. nav.main-nav a {
  116. top: 8px;
  117. right: 6px;
  118. padding: 8px 12px;
  119. color: #5badf0;
  120. font-size: 13px;
  121. /*font-weight: bold;*/
  122. line-height: 1.35;
  123. border-radius: 3px;
  124. }
  125. nav.main-nav a.cta {
  126. background: #5badf0;
  127. color: #fff;
  128. margin-left: 12px;
  129. }
  130. #wrapper {
  131. max-width: 600px;
  132. margin: 0 auto;
  133. padding: 60px 40px 100px 40px;
  134. }
  135. #wrapper.home {
  136. max-width: 600px;
  137. margin: 0 auto;
  138. padding: 0px 40px 20px 40px;
  139. }
  140. .home #avatar {
  141. float: right;
  142. width: 40px;
  143. height: 40px;
  144. border-radius: 50%;
  145. }
  146. /* Typography */
  147. /*Accent color*/
  148. a,
  149. #title,
  150. #post-list a:hover,
  151. #post-list li:hover .dates,
  152. #title:hover {
  153. text-decoration: none;
  154. color: #5badf0;
  155. color: #5694f1;
  156. }
  157. p a { color: #5694f1; }
  158. /*Transitions*/
  159. a,
  160. #post-nav a,
  161. #post-list a {
  162. -webkit-transition: all 0.15s ease;
  163. -moz-transition: all 0.15s ease;
  164. -ms-transition: all 0.15s ease;
  165. -o-transition: all 0.15s ease;
  166. transition: all 0.15s ease;
  167. }
  168. ul { margin:0; padding:0; margin-bottom: 20px; }
  169. li { list-style-type:circle; list-style-position:inside; }
  170. /* Line Height */
  171. #post-body, p { line-height:1.7; }
  172. b, strong { font-weight: 500;
  173. color: #1E2025; }
  174. em, i { font-style: italic; }
  175. #title {
  176. display: inline-block;
  177. line-height: 100%;
  178. font-weight: 500;
  179. font-size: 19px;
  180. margin: 0;
  181. padding-bottom: 20px;
  182. }
  183. .description {
  184. float: right;
  185. font: italic 14px/1.4em Georgia,serif;
  186. color: #aaa;
  187. }
  188. .home h1 {
  189. font-size: 30px;
  190. letter-spacing: -1px;
  191. color: #222;
  192. font-weight: bold;
  193. }
  194. .home h2 {
  195. font: italic 19px/1.3em Georgia,serif;
  196. color: #bbb;
  197. }
  198. .post header {
  199. text-align:center;
  200. }
  201. .post h1 {
  202. margin-bottom: 20px;
  203. color: #222;
  204. font-weight: 300;
  205. font-size: 200%;
  206. }
  207. .post h2 {
  208. margin-bottom: 40px;
  209. font: 300 24px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  210. color: #111;
  211. }
  212. .post h2.headline {
  213. /*font: italic 22px/1.3em Georgia,serif;*/
  214. font: normal 13px/1.5em -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  215. margin: -5px 0 40px 0;
  216. color: #b2b9be;
  217. font-size: 13px;
  218. text-transform: uppercase;
  219. letter-spacing: 2px;
  220. /*margin-top: 15px;*/
  221. display: inline-block;
  222. }
  223. #post-list h2 {
  224. font: normal 17px/1.5em -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  225. color: #aaa;
  226. max-width: 400px;
  227. margin-top: 2px;
  228. }
  229. h3, h4, h5 { color:#333; }
  230. h3 { font-size:20px; font-weight: 400; }
  231. h4 { font-size:16px; font-weight:bold; }
  232. h5 { font-size:15px; font-weight: bold; }
  233. h6 {
  234. font-size: 13px;
  235. font-weight: bold;
  236. color: #666;
  237. margin-bottom: 6px;
  238. }
  239. p.small {
  240. color: #bbb;
  241. font-size: 14px;
  242. line-height: 1.5;
  243. display: block;
  244. text-align: center;
  245. margin-top: 20px;
  246. }
  247. blockquote {
  248. padding-left: 15px;
  249. border-left: 3px solid #eee;
  250. }
  251. hr {
  252. display: block;
  253. border: none;
  254. height: 1px;
  255. margin: 40px auto;
  256. background: #eee;
  257. }
  258. span.code {
  259. font-family:'Ubuntu Mono', 'Source Code Pro', Menlo, Monaco, Courier;
  260. background-color:#EEE;
  261. }
  262. pre {
  263. font-family:'Ubuntu Mono', 'Source Code Pro', Menlo, Monaco, Courier;
  264. white-space:pre-wrap;
  265. /*border: 1px solid #ddd;*/
  266. padding:20px;
  267. background-color:#fdfdfd;
  268. overflow:auto;
  269. border-radius: 3px;
  270. background: #272b2d;
  271. color: #d0d4d7;
  272. }
  273. table {
  274. width: 100%;
  275. margin: 40px 0;
  276. border-collapse: collapse;
  277. font-size: 13px;
  278. line-height: 1.5em;
  279. }
  280. th,td {
  281. text-align: left;
  282. padding-right: 20px;
  283. vertical-align: top;
  284. }
  285. table td,td {
  286. border-spacing: none;
  287. border-style: solid;
  288. padding: 10px 15px;
  289. border-width: 1px 0 0 0;
  290. }
  291. tr>td {
  292. border-top: 1px solid #eaeaea;
  293. }
  294. tr:nth-child(odd)>td {
  295. background: #fcfcfc;
  296. }
  297. thead th,th {
  298. text-align: left;
  299. padding: 10px 15px;
  300. height: 20px;
  301. font-size: 13px;
  302. font-weight: bold;
  303. color: #444;
  304. border-bottom: 1px solid #dadadc;
  305. cursor: default;
  306. white-space: nowrap;
  307. }
  308. img {
  309. max-width: 100%;
  310. border-radius: 3px;
  311. }
  312. /* Made with Cactus Badge */
  313. #badge {
  314. position: absolute;
  315. bottom: 8px;
  316. right: 8px;
  317. height: 48px;
  318. width: 48px;
  319. }
  320. /*=========================================
  321. Post List
  322. =========================================== */
  323. #archive-list {
  324. margin-top: 100px;
  325. }
  326. #post-list {
  327. margin-bottom: 0;
  328. }
  329. #post-list li,#archive-list li {
  330. border-top: 1px solid #eee;
  331. padding-top: 20px;
  332. padding-bottom: 20px;
  333. list-style-type: none;
  334. margin-bottom: 0;
  335. }
  336. #post-list li:last-child {
  337. border-bottom: 1px solid #eee;
  338. }
  339. #post-list a {
  340. color: #333;
  341. display: block;
  342. font: bold 19px/1.7 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  343. }
  344. #post-list .dates {
  345. float: right;
  346. position: relative;
  347. top: 1px;
  348. font: 300 17px/1.8 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  349. color: #bbb;
  350. }
  351. #post-list-footer {
  352. border-top: 1px solid #eee;
  353. margin-top: 20px;
  354. padding-top: 100px;
  355. }
  356. #archive-link {
  357. display: inline-block;
  358. font-size: 13px;
  359. font-weight: bold;
  360. border-radius: 4px;
  361. padding: 3px 10px 6px;
  362. box-shadow: 0 0 0 1px hsla(207,83%,80%,1);
  363. }
  364. #archive-link:hover {
  365. background: #5694f1;
  366. color: #fff;
  367. box-shadow: 0 0 0 1px #5694f1;
  368. }
  369. #archive-link span {
  370. position: relative;
  371. top: 0;
  372. font-size: 17px;
  373. }
  374. #footer {
  375. padding: 40px 0 0 0;
  376. }
  377. /* Post Page */
  378. .post {
  379. margin: 80px 0 0 0;
  380. }
  381. #post-meta {
  382. font-size: 13px;
  383. font-weight: bold;
  384. line-height: 1.4;
  385. border-top: 1px solid #eee;
  386. padding-top: 40px;
  387. margin-bottom: 40px;
  388. padding-bottom: 40px;
  389. margin-top: 40px;
  390. color:#444;
  391. border-bottom: 1px solid #eee;
  392. }
  393. #post-meta div span {
  394. color: #aaa;
  395. font-weight: 500;
  396. display: block;
  397. }
  398. #post-meta div span.dark {
  399. color: #1E2025;
  400. }
  401. #post-meta div {
  402. margin: 0 25px 0 0;
  403. float: left;
  404. }
  405. #sharing {
  406. float: right;
  407. margin: -2px;
  408. }
  409. #sharing a {
  410. font-size: 20px;
  411. font-size: 23px;
  412. margin-left: 1px;
  413. margin-top: 4px;
  414. color: #d4d4d4;
  415. display: inline-block;
  416. vertical-align: middle;
  417. }
  418. #sharing a:hover {
  419. /*color: #444;*/
  420. opacity: 0.8;
  421. }
  422. /* Post Navigation */
  423. #post-nav {
  424. text-align:center;
  425. font-size:13px;
  426. font-weight:500;
  427. margin-top: 20px;
  428. }
  429. #post-nav span {
  430. -webkit-transition: all 0.1s linear;
  431. -moz-transition: all 0.1s linear;
  432. -ms-transition: all 0.1s linear;
  433. -o-transition: all 0.1s linear;
  434. transition: all 0.1s linear;
  435. position: relative;
  436. }
  437. #post-nav span.prev {
  438. float: left;
  439. }
  440. #post-nav span.next {
  441. float: right;
  442. }
  443. #post-nav span .arrow {
  444. position: relative;
  445. padding: 1px;
  446. }
  447. #post-nav span.prev:hover .arrow {
  448. left: -4px;
  449. }
  450. #post-nav span.next:hover .arrow {
  451. right: -4px;
  452. }
  453. #post-nav span.prev:hover {
  454. left: -3px;
  455. }
  456. #post-nav span.next:hover {
  457. right: -3px;
  458. }
  459. /* Archive */
  460. h1.archive {
  461. margin-bottom: 0px;
  462. }
  463. h2.month {
  464. width: 100%;
  465. font: bold 13px/1 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  466. text-transform: uppercase;
  467. margin-top: 40px;
  468. margin-bottom: 10px;
  469. padding-bottom: 10px;
  470. border-bottom: 1px solid #eee;
  471. }
  472. #archive-list li:last-child {
  473. margin-bottom: 0;
  474. }
  475. #archive-list a {
  476. display: block;
  477. font: bold 17px/1.7 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  478. color: #333;
  479. }
  480. #archive-list .dates {
  481. float: right;
  482. position: relative;
  483. top: 1px;
  484. font: 300 17px/1.7 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  485. color: #bbb;
  486. }
  487. #archive-list li a:hover,#archive-list li:hover .dates {
  488. color: #5694f1;
  489. }
  490. #post-meta img.avatar {
  491. height: 36px;
  492. width: 36px;
  493. float: left;
  494. border-radius: 50%;
  495. margin-top: 3px;
  496. margin-right: 20px;
  497. box-shadow: 0 0 0 3px #fff, 0 0 0 4px #eee;
  498. }
  499. #post-list.archive.readmore h3{
  500. font: 400 20px -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  501. margin-bottom: 30px;
  502. }
  503. #post-list.archive.readmore a{
  504. font: 400 16px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  505. color: #5694f1;
  506. }
  507. #post-list.archive.readmore a:hover{
  508. opacity: 0.8;
  509. }
  510. #post-list.archive.readmore .dates{
  511. font: 300 16px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  512. }
  513. #sharing a.facebook {
  514. background: #4361b3;
  515. }
  516. #sharing a.twitter {
  517. background: #4fafed;
  518. }
  519. #sharing a {
  520. font-size: 20px;
  521. font-size: 13px;
  522. font-weight: bold;
  523. color: #fff;
  524. padding: 6px 10px;
  525. border-radius: 4px;
  526. margin-left: 2px;
  527. }
  528. /* Media Queries */
  529. @media screen and (max-width: 540px) {
  530. #wrapper { padding:20px 20px 20px 20px;}
  531. .post { margin: 40px 0; }
  532. #post-list, #archive-list { margin-top: 0; }
  533. #post-meta { margin-top: 60px; }
  534. #title { font-size: 17px; }
  535. #post-list .dates { display: none; }
  536. #post-list-footer { margin-top: 20px; padding-top: 40px; }
  537. h1 { font-size: 26px; }
  538. .post h2.headline { font-size: 13px; }
  539. .post h1 { font-size:24px; }
  540. .post h2 { font-size:20px; }
  541. }
  542. /* CUSTOM ADDITIONS */
  543. #social {
  544. display: flex;
  545. flex-direction: row;
  546. justify-content: center;
  547. }
  548. a.symbol {
  549. color: #cdd4da;
  550. font-size: 2rem;
  551. text-decoration: none;
  552. margin-right: 0.3rem;
  553. }
  554. a.symbol:hover {
  555. color: #BCD4DA;
  556. }
  557. code {
  558. font-family:'Ubuntu Mono', 'Source Code Pro', Menlo, Monaco, Courier;
  559. background-color:#EEE;
  560. padding: 4px;
  561. }