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.

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