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.

1097 lines
21 KiB

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