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.

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