Mobile-responsive personal website, generated using Hugo. https://kevin-mok.com/
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.

1156 lines
22 KiB

4 months ago
2 years ago
2 years ago
5 months ago
5 months ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
4 months ago
2 years ago
5 months ago
4 months ago
2 years ago
4 months ago
5 months ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
5 months ago
2 years ago
5 months ago
5 months ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
5 months ago
5 months ago
5 months ago
5 months ago
2 years ago
2 years ago
2 years ago
  1. /* Base16 Eighties Colorscheme by Chris Kempson (http://chriskempson.com) */
  2. // base colors {{{ //
  3. $base02: #515151;
  4. $base03: #747369;
  5. $base04: #a09f93;
  6. $base05: #d3d0c8;
  7. $base-red: #f2777a;
  8. $base-orange: #f99157;
  9. $base-yellow: #ffcc66;
  10. $base-green: #99cc99;
  11. $base-sky-blue: #66cccc;
  12. $base-blue: #6699cc;
  13. $base-violet: #cc99cc;
  14. $base-dark-orange: #d27b53;
  15. $link-color: #4287cd;
  16. /* .base00 { color: #2d2d2d; }
  17. .base01 { color: #393939; }
  18. .base02 { color: #515151; }
  19. .base03 { color: #747369; }
  20. .base04 { color: #a09f93; }
  21. .base06 { color: #e8e6df; }
  22. .base07 { color: #f2f0ec; } */
  23. .base08 { color: $base-red; }
  24. .base09 { color: $base-orange; }
  25. .base0a { color: $base-yellow; }
  26. .base0b { color: $base-green; }
  27. .base0c { color: $base-sky-blue; }
  28. .base0d { color: $base-blue; }
  29. .base0e { color: $base-violet; }
  30. .base0f { color: $base-dark-orange; }
  31. // }}} base colors //
  32. // mixins {{{ //
  33. // $max-page-width: 52em;
  34. $max-page-width: 45em;
  35. $phone-width: 800px;
  36. @mixin side-padding-rem($n) {// {{{
  37. padding-left: $n * 1rem;
  38. padding-right: $n * 1rem;
  39. }// }}}
  40. @mixin side-margin-em($n) {// {{{
  41. margin-left: $n * 1em;
  42. margin-right: $n * 1em;
  43. }// }}}
  44. @mixin vert-padding-rem($n) {// {{{
  45. padding-top: $n * 1rem;
  46. padding-bottom: $n * 1rem;
  47. }// }}}
  48. @mixin vert-margin-rem($n) {// {{{
  49. margin-top: $n * 1rem;
  50. margin-bottom: $n * 1rem;
  51. }// }}}
  52. @mixin auto-center() {// {{{
  53. margin-left: auto;
  54. margin-right: auto;
  55. }// }}}
  56. @mixin article-body() {// {{{
  57. /* background-color: #e6e6fa; */
  58. background-color: #cbbeb5;
  59. color: #2d2d2d;
  60. @include side-padding-rem(8);
  61. @include vert-padding-rem(1);
  62. /* min-height: 50%; */
  63. /* min-height: 30em; */
  64. @media (max-width: $max-page-width) {
  65. @include side-padding-rem(2);
  66. }
  67. }// }}}
  68. @mixin a-color($color) {// {{{
  69. a {
  70. color: $color;
  71. &:visited {
  72. color: $color;
  73. }
  74. &:active {
  75. color: $color;
  76. }
  77. }
  78. }// }}}
  79. // }}} mixins //
  80. // general elements {{{ //
  81. // $background-color: #2d2d2d;
  82. // $color: #f2f0ec;
  83. $background-color: white;
  84. $color: black;
  85. body {
  86. margin: 0;
  87. background-color: $background-color;
  88. color: $color;
  89. line-height: 1.5;
  90. // font-size: 100%;
  91. // font-size: 15px;
  92. font-size: 17px;
  93. // font-size: 20px;
  94. /* font-family: 'Source Code Pro', monospace; */
  95. // font-family: 'Hack', monospace;
  96. // body {
  97. // font-family: 'Times New Roman', serif;
  98. font-family: "Computer Modern Serif";
  99. // }
  100. display: flex;
  101. flex-direction: column;
  102. min-height: 100vh;
  103. @include a-color($base-sky-blue);
  104. }
  105. .container {
  106. max-width: $max-page-width;
  107. margin-left: auto;
  108. margin-right: auto;
  109. flex: 1;
  110. @media (max-width: $max-page-width) {
  111. width: 100%;
  112. }
  113. }
  114. div {
  115. .right {
  116. float:right;
  117. }
  118. .clearfix {
  119. overflow: auto;
  120. }
  121. }
  122. article {
  123. .single {
  124. section {
  125. @include article-body();
  126. }
  127. }
  128. }
  129. .article-list {
  130. article {
  131. @include article-body();
  132. }
  133. }
  134. header {
  135. margin-top: 1.5rem;
  136. margin-bottom: 1rem;
  137. @media (max-width: $max-page-width) {
  138. margin-top: 0;
  139. @include side-padding-rem(2);
  140. }
  141. }
  142. footer {
  143. // base {{{ //
  144. @include a-color(#747369);
  145. // background-color: #393939;
  146. // max-width: $max-page-width;
  147. margin-top: 2rem;
  148. $vertical-margin: .2em;
  149. text-align: center;
  150. font-size: 0.8em;
  151. color: #747369;
  152. // bottom: 0;
  153. // position: absolute;
  154. // width: 100%;
  155. // }}} base //
  156. .container {// {{{
  157. // max-width: $max-page-width;
  158. // min-width: $max-page-width;
  159. @include auto-center();
  160. // @include vert-padding-rem(.1);
  161. @include side-padding-rem(0);
  162. #footer-row {
  163. // background-color: #393939;
  164. }
  165. #footer-content {
  166. $side-padding: 2.5em;
  167. @include vert-padding-rem(.35);
  168. border-style: solid;
  169. border-width: 1px 0 0 0;
  170. border-color: rgba(81, 81, 81, .75);
  171. #copyright {
  172. // padding-left: .85em;
  173. padding-left: $side-padding;
  174. position: relative;
  175. top: 2px;
  176. @include a-color(#747369);
  177. }
  178. #social-icons {
  179. position: relative;
  180. padding-right: $side-padding;
  181. // padding-right: .9em;
  182. img {
  183. height: 1.5em;
  184. @include vert-margin-rem(.2);
  185. padding-left: .5em;
  186. opacity: .6;
  187. &:hover {
  188. opacity: 1;
  189. }
  190. }
  191. }
  192. }
  193. }// }}}
  194. @media (max-width: $max-page-width) {
  195. margin-top: 0;
  196. margin-bottom: 0;
  197. }
  198. @media (max-width: $phone-width) {
  199. font-size: 0.8em;
  200. }
  201. }
  202. /* Typography */
  203. @for $i from 1 to 6 {
  204. h#{$i} {
  205. font-weight: bold;
  206. line-height: 1.25;
  207. margin-top: 1em;
  208. margin-bottom: .5em;
  209. }
  210. }
  211. p {
  212. margin-top: 0;
  213. margin-bottom: 1rem;
  214. }
  215. // h1 {
  216. // font-size: 2rem;
  217. // @media (max-width: $phone-width) {
  218. // font-size: 1.75rem;
  219. // }
  220. // }
  221. // h2 {
  222. // font-size: 1.5rem;
  223. // @media (max-width: $phone-width) {
  224. // font-size: 1.4rem;
  225. // }
  226. // }
  227. h3 { font-size: 1.25rem }
  228. // h4 { font-size: 1rem }
  229. h5 { font-size: .875rem }
  230. h6 { font-size: .75rem }
  231. pre, code {
  232. font-family: inherit;
  233. font-size: inherit;
  234. }
  235. // }}} general elements //
  236. header {// {{{
  237. a {
  238. .path .path:visited {
  239. color: #6699cc;
  240. }
  241. }
  242. span {
  243. caret {
  244. color: #f2f0ec;
  245. }
  246. }
  247. }// }}}
  248. .page-not-found {// {{{
  249. h1 {
  250. text-align: center;
  251. font-size: 5em;
  252. }
  253. h2 {
  254. text-align: center;
  255. font-size: 3em;
  256. color: $base04;
  257. margin-bottom: 4rem;
  258. }
  259. @media (max-width: $max-page-width) {
  260. h1 {
  261. font-size: 3em;
  262. }
  263. h2 {
  264. font-size: 2em;
  265. }
  266. }
  267. }// }}}
  268. #homepage {// {{{
  269. #about {
  270. font-size: 1.1rem;
  271. h2 {
  272. margin-top: 1.25rem;
  273. // font-size: 2rem;
  274. font-size: 1.9rem;
  275. color: $base-yellow;
  276. text-align: center;
  277. // @media (max-width: $max-page-width) {
  278. // @include side-padding-rem(2);
  279. // }
  280. }
  281. .me-equation {
  282. margin-top: 3em;
  283. text-align: center;
  284. display: flex;
  285. // display: grid;
  286. // grid-template-columns: repeat(3, 2fr 1fr) 2fr;
  287. justify-content: center; /* align horizontal */
  288. align-items: center; /* align vertical */
  289. .equation-part {
  290. // width: 33%;
  291. display: flex;
  292. flex: 1;
  293. justify-content: center; /* align horizontal */
  294. align-items: center; /* align vertical */
  295. a {
  296. text-decoration: none;
  297. width: 70%;
  298. }
  299. img {
  300. // width: 7em;
  301. width: 70%;
  302. // width: 15vw;
  303. // min-width: 25%;
  304. // height: 25%;
  305. height: 100%;
  306. // height: auto;
  307. // height: 20vw;
  308. // object-fit: contain;
  309. // flex-basis: 20%;
  310. // flex: 2 2 0;
  311. // border-radius: 1.5em;
  312. border-radius: 1.1em;
  313. display: inline;
  314. &#gnu {
  315. background-color: $base04;
  316. // background-color: $base05;
  317. }
  318. }
  319. p {
  320. // font-size: 3rem;
  321. font-size: 3vw;
  322. // width: 20%;
  323. // flex: 1;
  324. // display: inline;
  325. display: inline-block;
  326. @include side-padding-rem(0.2);
  327. }
  328. }
  329. // @media (max-width: 800px) {// {{{
  330. @media (max-width: $phone-width) {
  331. // flex-direction: column;
  332. flex-wrap: wrap;
  333. margin-top: 2em;
  334. justify-content: space-around; /* align horizontal */
  335. // height: 100vh;
  336. // height: 50vh;
  337. .equation-part {
  338. // min-width: 50vw;
  339. // display: inline-block;
  340. // min-width: 50%;
  341. min-width: 33%;
  342. // max-height: 25vh;
  343. // flex-direction: column;
  344. img {
  345. // display: block;
  346. // width: 50%;
  347. flex: 1.5;
  348. // flex: 1;
  349. // height: 50%;
  350. // max-height: 30%;
  351. // max-height: 25vh;
  352. &#hexatar {
  353. // max-width: 70%;
  354. max-width: 20%;
  355. // max-height: 15vh;
  356. // margin-top: 2rem;
  357. margin-top: 1.75rem;
  358. }
  359. }
  360. p {
  361. // font-size: 3rem;
  362. font-size: 6vw;
  363. // width: 20%;
  364. flex: 1;
  365. // @include side-padding-rem(0.2);
  366. }
  367. &#uoft-part {
  368. justify-content: flex-end;
  369. }
  370. }
  371. }
  372. // @media (max-width: $phone-width) {
  373. // margin-top: 2em;
  374. // display: block;
  375. // p {
  376. // display: block;
  377. // @include vert-padding-rem(0.1);
  378. // margin-bottom: 0rem;
  379. // }
  380. // }
  381. }
  382. @media (max-width: $phone-width) {
  383. // font-size: 1.1em;
  384. font-size: .9em;
  385. h1 {
  386. // font-size: 1.75rem;
  387. font-size: 1.4rem;
  388. }
  389. }// }}}
  390. }
  391. @media (max-width: $max-page-width) {
  392. margin-bottom: 2rem;
  393. }
  394. }
  395. /* .homepage section.categories,
  396. .homepage section.tags {
  397. padding-left: 2rem;
  398. padding-right: 2rem;
  399. }
  400. .homepage .category,
  401. .homepage .category a,
  402. .homepage .tag,
  403. .homepage .tag a {
  404. color: #cc99cc;
  405. }
  406. .homepage .tag {
  407. margin-right: 2em;
  408. } */// }}}
  409. #print-icon {// {{{
  410. float: right;
  411. display: none;
  412. img {
  413. height: 1.75em;
  414. position: relative;
  415. top: 1em;
  416. }
  417. }// }}}
  418. #contact-info {// {{{
  419. @include side-margin-em(0);
  420. // @include vert-padding-rem(0.5);
  421. @include a-color($base-sky-blue);
  422. // min-width: $max-page-width;
  423. @media (min-width: 1200px) {
  424. .container{
  425. min-width: $max-page-width;
  426. }
  427. }
  428. a {// {{{
  429. color: $link-color;
  430. text-decoration: none;
  431. &:hover {
  432. text-decoration: none;
  433. }
  434. }// }}}
  435. font-size: 1.4em;
  436. // font-size: .8em;
  437. .row {
  438. // flex-grow: 1;
  439. // color: $base05;
  440. color: $link-color;
  441. img {
  442. height: 1em;
  443. // @media (max-width: $phone-width) {
  444. // height: 1.5em;
  445. // }
  446. }
  447. div[class^="col"] {
  448. @include side-padding-rem(0);
  449. // text-align: center;
  450. }
  451. }
  452. .url-info {
  453. margin-left: 5px;
  454. // position: relative;
  455. // left: -8px;
  456. // @media (max-width: $phone-width) {
  457. // // display: none;
  458. // // font-size: 10px;
  459. // font-size: .8em;
  460. // }
  461. }
  462. }// }}}
  463. #resume {// {{{
  464. a {// {{{
  465. // text-decoration: none;
  466. color: $link-color;
  467. text-decoration: underline;
  468. &:hover {
  469. text-decoration: underline;
  470. }
  471. }// }}}
  472. h1 {// {{{
  473. // color: $base-orange;
  474. color: black;
  475. // margin-top: 1.3rem;
  476. margin-top: 1rem;
  477. font-size: 1.2em;
  478. // @media (max-width: $phone-width) {
  479. // margin-top: .75rem;
  480. // }
  481. }// }}}
  482. h2 {// {{{
  483. color: $base-orange;
  484. margin-top: .5rem;
  485. font-size: 1em;
  486. // @media (max-width: $phone-width) {
  487. // font-size: 1.2em;
  488. // margin-top: .75rem;
  489. // }
  490. }// }}}
  491. h4 {// {{{
  492. color: $base-yellow;
  493. margin-top: .5rem;
  494. font-size: 1.2em;
  495. // @media (max-width: $phone-width) {
  496. // font-size: 1.2em;
  497. // margin-top: .75rem;
  498. // }
  499. }// }}}
  500. .date {// {{{
  501. float: right;
  502. color: $base03;
  503. // @media (max-width: $phone-width) {
  504. // padding-top: 0em;
  505. // }
  506. }// }}}
  507. ul {
  508. margin-bottom: 5px;
  509. }
  510. #projects {// {{{
  511. // // h1 {
  512. // // margin-bottom: 3px;
  513. // // }
  514. .project {// {{{
  515. @include vert-padding-rem(.2);
  516. h2 {
  517. color: $base-sky-blue;
  518. display: inline;
  519. }
  520. img {
  521. height: 1.2em;
  522. }
  523. .project-header {
  524. // margin-bottom: .6em;
  525. // margin-bottom: .1em;
  526. margin-bottom: 5px;
  527. }
  528. .project-title {
  529. // color: $base-blue;
  530. color: black;
  531. }
  532. .project-link {
  533. &:hover {
  534. text-decoration: none;
  535. }
  536. }
  537. .down-triangle {
  538. // fill: blue;
  539. height: 1.2em;
  540. position: relative;
  541. top: -3px;
  542. left: -3px;
  543. }
  544. .btn {// {{{
  545. display: inline;
  546. background-color: transparent;
  547. margin-bottom: 5px;
  548. padding-left: 7px;
  549. &:focus, &:active {
  550. outline: none !important;
  551. box-shadow: none;
  552. }
  553. }// }}}
  554. // }}}
  555. // [id^="details-"] {
  556. // margin-top: .5em;
  557. // }
  558. }
  559. }// }}}
  560. .company {
  561. // color: #fe4646;
  562. color: black;
  563. font-weight: bold;
  564. font-size: 1.2em;
  565. margin-bottom: 5px;
  566. }
  567. .position {
  568. // color: black;
  569. // color: $base-sky-blue;
  570. // color: $base-blue;
  571. color: black;
  572. font-weight: bold;
  573. // font-style: italic;
  574. // font-size: 1.1em;
  575. font-size: 1em;
  576. // margin-bottom: 5px;
  577. margin-bottom: 15px;
  578. }
  579. .institution {
  580. // color: $base-yellow;
  581. // color: $base-dark-orange;
  582. // color: $base-blue;
  583. color: black;
  584. font-weight: bold;
  585. font-size: 1.1em;
  586. margin-bottom: 5px;
  587. }
  588. .title {
  589. font-style: italic;
  590. }
  591. #education {// {{{
  592. .date {
  593. padding-top: 0;
  594. }
  595. }// }}}
  596. // @media (max-width: $phone-width) {
  597. // font-size: 14px;
  598. // // font-size: 1em;
  599. // }
  600. &.letter {
  601. font-size: 1.4em;
  602. // font-size: 2em;
  603. margin-top: 2em;
  604. line-height: 1.5em;
  605. img {
  606. height: 4.5em;
  607. }
  608. h2 {
  609. color: $base-red;
  610. margin-top: 0em;
  611. margin-bottom: .4em;
  612. }
  613. p {
  614. margin-bottom: 1em;
  615. }
  616. .no-line-spacing {
  617. line-height: .5em;
  618. margin-bottom: 1.75em;
  619. p {
  620. margin-bottom: 1em;
  621. }
  622. }
  623. }
  624. }// }}}
  625. #server {// {{{
  626. .body {
  627. @include vert-padding-rem(.5);
  628. }
  629. h1 {
  630. margin-bottom: .25em;
  631. }
  632. // table {
  633. // margin-top: 1.75em;
  634. // }
  635. th, td {
  636. @include vert-padding-rem(.4);
  637. @include side-padding-rem(.5);
  638. border: 1px solid rgba(160, 159, 147, .5);
  639. }
  640. th {
  641. color: $base-orange;
  642. text-align: center;
  643. font-size: 1.3em;
  644. }
  645. td {
  646. font-size: .9em;
  647. }
  648. .description {
  649. font-size: .85em;
  650. }
  651. .status {
  652. text-align: center;
  653. img {
  654. height: 2em;
  655. }
  656. }
  657. #time-info {
  658. padding-top: 1em;
  659. font-size: .75em;
  660. font-style: italic;
  661. color: $base03;
  662. }
  663. }// }}}
  664. // TODO: converted up to here
  665. // hero {{{ //
  666. h1.site-title {// {{{
  667. text-align: center;
  668. // font-size: 4.2em;
  669. // font-size: 3.2em;
  670. font-size: 2.5em;
  671. // color: #66cccc;
  672. color: $base05;
  673. // margin-top: 1rem;
  674. // margin-bottom: 0.75rem;
  675. @include vert-margin-rem(.75);
  676. // @include a-color($base-sky-blue);
  677. a {
  678. color: black;
  679. // text-decoration: none;
  680. text-decoration: underline;
  681. text-decoration-thickness: 2px;
  682. text-underline-offset: 5px;
  683. }
  684. // @media (max-width: $phone-width) {
  685. // font-size: 3em;
  686. // }
  687. // @media (max-width: $phone-width) {
  688. // font-size: 3.5em;
  689. // @include vert-margin-rem(.3);
  690. // // font-size: 2.5em;
  691. // // font-size: 2em;
  692. // .surrounding {
  693. // display: none;
  694. // }
  695. // }
  696. }// }}}
  697. .hero-logo img {
  698. margin-top: 0.5rem;
  699. width: 100%;
  700. // display: none;
  701. // width: $max-page-width;
  702. }
  703. .nav-bar {// {{{
  704. margin-left: .5em;
  705. // margin-bottom: 1em;
  706. // margin-top: .75em;
  707. @include vert-padding-rem(.5);
  708. .caret {
  709. color: #f2f0ec;
  710. margin-right: .75rem;
  711. }
  712. .nav-bar-links {
  713. display: inline;
  714. .nav-bar-link {
  715. padding-right: .5em;
  716. }
  717. }
  718. @media (max-width: $phone-width) {
  719. // font-size: .9em;
  720. font-size: .8em;
  721. }
  722. }// }}}
  723. .hero-tagline{// {{{
  724. margin-top: .3em;
  725. font-size: .8rem;
  726. // font-style: italic;
  727. text-align: center;
  728. .icon {
  729. width: 1.25rem;
  730. }
  731. }// }}}
  732. // }}} hero //
  733. // article-list {{{ //
  734. .article-list h1.list-title {
  735. font-size: 3em;
  736. color: #ffcc66;
  737. }
  738. .article-list article {
  739. padding-top: 4rem;
  740. padding-bottom: 4rem;
  741. margin-bottom: 4rem;
  742. }
  743. .article-list article h2.headline,
  744. .article-list article h2.headline a {
  745. margin-top: 0;
  746. color: #6699cc;
  747. }
  748. .article-list article .meta {
  749. margin-bottom: 1rem;
  750. }
  751. .article-list article .meta .key {
  752. color: #747369;
  753. }
  754. .article-list article .meta .val,
  755. .article-list article .meta .val a {
  756. color: #cc99cc;
  757. }
  758. .article-list article section.summary a { color: #d27b53; }
  759. // }}} article-list //
  760. // article.single {{{ //
  761. article.single {
  762. .meta {
  763. font-size: 0.9em;
  764. text-align: right;
  765. margin-top: .5rem;
  766. margin-bottom: .5rem;
  767. .key {
  768. color: #747369;
  769. }
  770. .val {
  771. color: #cc99cc;
  772. a {
  773. color: #cc99cc;
  774. }
  775. }
  776. }
  777. .body {
  778. padding-top: 1rem;
  779. padding-bottom: 3rem;
  780. }
  781. @media (max-width: $max-page-width) {
  782. .meta {
  783. padding-left: 2rem;
  784. padding-right: 2rem;
  785. }
  786. .body {
  787. padding-top: .5rem;
  788. padding-bottom: 1rem;
  789. }
  790. }
  791. }
  792. article.single h1.headline {
  793. margin-top: 0;
  794. font-size: 3em;
  795. color: #ffcc66;
  796. }
  797. @media (max-width: $max-page-width) {
  798. article.single h1.headline {
  799. font-size: 2em;
  800. padding-left: 2rem;
  801. padding-right: 2rem;
  802. }
  803. }
  804. /* Highlight Colors */
  805. article.single section.body h1 { color: #6699cc; }
  806. article.single section.body h2 { color: #99cc99; }
  807. article.single section.body h3 { color: #f99157; }
  808. article.single section.body h4 { color: #f2777a; }
  809. article.single section.body h5 { color: #515151; }
  810. article.single section.body h6 { color: #747369; }
  811. // article.single section.body a,a:visited { color: #a06700; }
  812. article.single section.body a,a:visited { color: $base-sky-blue; }
  813. /* Article Elements */
  814. article.single * {
  815. max-width: 100%;
  816. }
  817. article.single pre {
  818. margin-top: 0;
  819. margin-bottom: 1rem;
  820. // overflow-x: auto;
  821. border-radius: 3px;
  822. padding: 2rem;
  823. }
  824. article.single p code {
  825. padding: 0.2em 0.5em;
  826. border-radius: 3px;
  827. background: #747369;
  828. color: #f2f0ec;
  829. }
  830. article.single figure, article.single div.highlight {
  831. box-sizing: border-box;
  832. max-width: 52rem;
  833. width: 52rem;
  834. margin-bottom: 1rem;
  835. padding: 1em;
  836. background-color: #393939;
  837. }
  838. @media (max-width: $max-page-width) {
  839. article.single figure, article.single div.highlight {
  840. width: 100%;
  841. margin-left: 0;
  842. margin-right: 0;
  843. border-radius: 3px;
  844. }
  845. }
  846. article.single figure img {
  847. max-width: 100%;
  848. width: 100%;
  849. border-radius: 3px;
  850. }
  851. article.single figure figcaption {
  852. margin-top: 1rem;
  853. }
  854. article.single figure figcaption h4 {
  855. margin-top: 0;
  856. text-align: center;
  857. font-style: italic;
  858. font-weight: normal;
  859. color: #f2f0ec;
  860. }
  861. article.single table {
  862. border-collapse: separate;
  863. border-spacing: 0;
  864. max-width: 100%;
  865. width: 100%;
  866. }
  867. article.single th,
  868. article.single td {
  869. padding: .25rem 1rem;
  870. line-height: inherit;
  871. border-bottom-width: 1px;
  872. border-bottom-style: solid;
  873. border-bottom-color: $base04;
  874. }
  875. article.single tr:last-child td {
  876. border-bottom: 0;
  877. }
  878. article.single th {
  879. text-align: left;
  880. font-weight: bold;
  881. vertical-align: bottom;
  882. }
  883. article.single td { vertical-align: top }
  884. article.single blockquote {
  885. margin-left: 2rem;
  886. margin-right: 3rem;
  887. padding-left: 1rem;
  888. border-left: 5px solid #66cccc;
  889. }
  890. article.single hr {
  891. border: 0;
  892. border-bottom-style: solid;
  893. border-bottom-width: 1px;
  894. border-bottom-color: $base04;
  895. }
  896. // }}} article.single //
  897. // Pygments {{{ //
  898. pre { background: #2d2d2d; color: #f2f0ec }
  899. .highlight .hll { background-color: #515151 }
  900. .highlight .c { color: #747369 } /* Comment */
  901. .highlight .err { color: #f2777a } /* Error */
  902. .highlight .k { color: #cc99cc } /* Keyword */
  903. .highlight .l { color: #f99157 } /* Literal */
  904. .highlight .n { color: #f2f0ec } /* Name */
  905. .highlight .o { color: #66cccc } /* Operator */
  906. .highlight .p { color: #f2f0ec } /* Punctuation */
  907. .highlight .cm { color: #747369 } /* Comment.Multiline */
  908. .highlight .cp { color: #747369 } /* Comment.Preproc */
  909. .highlight .c1 { color: #747369 } /* Comment.Single */
  910. .highlight .cs { color: #747369 } /* Comment.Special */
  911. .highlight .gd { color: #f2777a } /* Generic.Deleted */
  912. .highlight .ge { font-style: italic } /* Generic.Emph */
  913. .highlight .gh { color: #f2f0ec; font-weight: bold } /* Generic.Heading */
  914. .highlight .gi { color: #99cc99 } /* Generic.Inserted */
  915. .highlight .gp { color: #747369; font-weight: bold } /* Generic.Prompt */
  916. .highlight .gs { font-weight: bold } /* Generic.Strong */
  917. .highlight .gu { color: #66cccc; font-weight: bold } /* Generic.Subheading */
  918. .highlight .kc { color: #cc99cc } /* Keyword.Constant */
  919. .highlight .kd { color: #cc99cc } /* Keyword.Declaration */
  920. .highlight .kn { color: #66cccc } /* Keyword.Namespace */
  921. .highlight .kp { color: #cc99cc } /* Keyword.Pseudo */
  922. .highlight .kr { color: #cc99cc } /* Keyword.Reserved */
  923. .highlight .kt { color: #ffcc66 } /* Keyword.Type */
  924. .highlight .ld { color: #99cc99 } /* Literal.Date */
  925. .highlight .m { color: #f99157 } /* Literal.Number */
  926. .highlight .s { color: #99cc99 } /* Literal.String */
  927. .highlight .na { color: #6699cc } /* Name.Attribute */
  928. .highlight .nb { color: #f2f0ec } /* Name.Builtin */
  929. .highlight .nc { color: #ffcc66 } /* Name.Class */
  930. .highlight .no { color: #f2777a } /* Name.Constant */
  931. .highlight .nd { color: #66cccc } /* Name.Decorator */
  932. .highlight .ni { color: #f2f0ec } /* Name.Entity */
  933. .highlight .ne { color: #f2777a } /* Name.Exception */
  934. .highlight .nf { color: #6699cc } /* Name.Function */
  935. .highlight .nl { color: #f2f0ec } /* Name.Label */
  936. .highlight .nn { color: #ffcc66 } /* Name.Namespace */
  937. .highlight .nx { color: #6699cc } /* Name.Other */
  938. .highlight .py { color: #f2f0ec } /* Name.Property */
  939. .highlight .nt { color: #66cccc } /* Name.Tag */
  940. .highlight .nv { color: #f2777a } /* Name.Variable */
  941. .highlight .ow { color: #66cccc } /* Operator.Word */
  942. .highlight .w { color: #f2f0ec } /* Text.Whitespace */
  943. .highlight .mf { color: #f99157 } /* Literal.Number.Float */
  944. .highlight .mh { color: #f99157 } /* Literal.Number.Hex */
  945. .highlight .mi { color: #f99157 } /* Literal.Number.Integer */
  946. .highlight .mo { color: #f99157 } /* Literal.Number.Oct */
  947. .highlight .sb { color: #99cc99 } /* Literal.String.Backtick */
  948. .highlight .sc { color: #f2f0ec } /* Literal.String.Char */
  949. .highlight .sd { color: #747369 } /* Literal.String.Doc */
  950. .highlight .s2 { color: #99cc99 } /* Literal.String.Double */
  951. .highlight .se { color: #f99157 } /* Literal.String.Escape */
  952. .highlight .sh { color: #99cc99 } /* Literal.String.Heredoc */
  953. .highlight .si { color: #f99157 } /* Literal.String.Interpol */
  954. .highlight .sx { color: #99cc99 } /* Literal.String.Other */
  955. .highlight .sr { color: #99cc99 } /* Literal.String.Regex */
  956. .highlight .s1 { color: #99cc99 } /* Literal.String.Single */
  957. .highlight .ss { color: #99cc99 } /* Literal.String.Symbol */
  958. .highlight .bp { color: #f2f0ec } /* Name.Builtin.Pseudo */
  959. .highlight .vc { color: #f2777a } /* Name.Variable.Class */
  960. .highlight .vg { color: #f2777a } /* Name.Variable.Global */
  961. .highlight .vi { color: #f2777a } /* Name.Variable.Instance */
  962. .highlight .il { color: #f99157 } /* Literal.Number.Integer.Long */
  963. /*# sourceMappingURL=style.css.map */
  964. // }}} Pygments //