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.

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