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.

1091 lines
21 KiB

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