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.

1115 lines
22 KiB

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