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.

1111 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
  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: 1.4em;
  429. // font-size: .8em;
  430. .row {
  431. // flex-grow: 1;
  432. color: $base05;
  433. img {
  434. height: 1em;
  435. // @media (max-width: $phone-width) {
  436. // height: 1.5em;
  437. // }
  438. }
  439. div[class^="col"] {
  440. @include side-padding-rem(0);
  441. // text-align: center;
  442. }
  443. }
  444. .url-info {
  445. margin-left: 5px;
  446. // position: relative;
  447. // left: -8px;
  448. // @media (max-width: $phone-width) {
  449. // // display: none;
  450. // // font-size: 10px;
  451. // font-size: .8em;
  452. // }
  453. }
  454. }// }}}
  455. #resume {// {{{
  456. a {// {{{
  457. // text-decoration: none;
  458. text-decoration: underline;
  459. &:hover {
  460. text-decoration: underline;
  461. }
  462. }// }}}
  463. h1 {// {{{
  464. color: $base-orange;
  465. // margin-top: 1.3rem;
  466. margin-top: 1rem;
  467. font-size: 1.2em;
  468. // @media (max-width: $phone-width) {
  469. // margin-top: .75rem;
  470. // }
  471. }// }}}
  472. h2 {// {{{
  473. color: $base-orange;
  474. margin-top: .5rem;
  475. font-size: 1em;
  476. // @media (max-width: $phone-width) {
  477. // font-size: 1.2em;
  478. // margin-top: .75rem;
  479. // }
  480. }// }}}
  481. h4 {// {{{
  482. color: $base-yellow;
  483. margin-top: .5rem;
  484. font-size: 1.2em;
  485. // @media (max-width: $phone-width) {
  486. // font-size: 1.2em;
  487. // margin-top: .75rem;
  488. // }
  489. }// }}}
  490. .date {// {{{
  491. float: right;
  492. color: $base03;
  493. // @media (max-width: $phone-width) {
  494. // padding-top: 0em;
  495. // }
  496. }// }}}
  497. ul {
  498. margin-bottom: 5px;
  499. }
  500. #projects {// {{{
  501. // // h1 {
  502. // // margin-bottom: 3px;
  503. // // }
  504. .project {// {{{
  505. @include vert-padding-rem(.2);
  506. h2 {
  507. color: $base-sky-blue;
  508. display: inline;
  509. }
  510. img {
  511. height: 1.2em;
  512. }
  513. .project-header {
  514. // margin-bottom: .6em;
  515. margin-bottom: .1em;
  516. }
  517. .project-link {
  518. &:hover {
  519. text-decoration: none;
  520. }
  521. }
  522. .down-triangle {
  523. // fill: blue;
  524. height: 1.2em;
  525. position: relative;
  526. top: -3px;
  527. left: -3px;
  528. }
  529. .btn {// {{{
  530. display: inline;
  531. background-color: transparent;
  532. margin-bottom: 5px;
  533. padding-left: 7px;
  534. &:focus, &:active {
  535. outline: none !important;
  536. box-shadow: none;
  537. }
  538. }// }}}
  539. // }}}
  540. // [id^="details-"] {
  541. // margin-top: .5em;
  542. // }
  543. }
  544. }// }}}
  545. .institution {
  546. color: $base-yellow;
  547. font-weight: bold;
  548. font-size: 1.1em;
  549. margin-bottom: 5px;
  550. }
  551. .title {
  552. font-style: italic;
  553. }
  554. #education {// {{{
  555. .date {
  556. padding-top: 0;
  557. }
  558. }// }}}
  559. // @media (max-width: $phone-width) {
  560. // font-size: 14px;
  561. // // font-size: 1em;
  562. // }
  563. &.letter {
  564. font-size: 1.4em;
  565. // font-size: 2em;
  566. margin-top: 2em;
  567. line-height: 1.5em;
  568. img {
  569. height: 4.5em;
  570. }
  571. h2 {
  572. color: $base-red;
  573. margin-top: 0em;
  574. margin-bottom: .4em;
  575. }
  576. p {
  577. margin-bottom: 1em;
  578. }
  579. .no-line-spacing {
  580. line-height: .5em;
  581. margin-bottom: 1.75em;
  582. p {
  583. margin-bottom: 1em;
  584. }
  585. }
  586. }
  587. }// }}}
  588. #server {// {{{
  589. .body {
  590. @include vert-padding-rem(.5);
  591. }
  592. h1 {
  593. margin-bottom: .25em;
  594. }
  595. // table {
  596. // margin-top: 1.75em;
  597. // }
  598. th, td {
  599. @include vert-padding-rem(.4);
  600. @include side-padding-rem(.5);
  601. border: 1px solid rgba(160, 159, 147, .5);
  602. }
  603. th {
  604. color: $base-orange;
  605. text-align: center;
  606. font-size: 1.3em;
  607. }
  608. td {
  609. font-size: .9em;
  610. }
  611. .description {
  612. font-size: .85em;
  613. }
  614. .status {
  615. text-align: center;
  616. img {
  617. height: 2em;
  618. }
  619. }
  620. #time-info {
  621. padding-top: 1em;
  622. font-size: .75em;
  623. font-style: italic;
  624. color: $base03;
  625. }
  626. }// }}}
  627. // TODO: converted up to here
  628. // hero {{{ //
  629. h1.site-title {// {{{
  630. text-align: center;
  631. font-size: 4.5em;
  632. // font-size: 3.2em;
  633. // color: #66cccc;
  634. color: $base05;
  635. // margin-top: 1rem;
  636. // margin-bottom: 0.75rem;
  637. @include vert-margin-rem(.75);
  638. @include a-color($base-sky-blue);
  639. a {
  640. text-decoration: none;
  641. }
  642. // @media (max-width: $phone-width) {
  643. // font-size: 3em;
  644. // }
  645. // @media (max-width: $phone-width) {
  646. // font-size: 3.5em;
  647. // @include vert-margin-rem(.3);
  648. // // font-size: 2.5em;
  649. // // font-size: 2em;
  650. // .surrounding {
  651. // display: none;
  652. // }
  653. // }
  654. }// }}}
  655. .hero-logo img {
  656. margin-top: 0.5rem;
  657. width: 100%;
  658. // display: none;
  659. // width: $max-page-width;
  660. }
  661. .nav-bar {// {{{
  662. margin-left: .5em;
  663. // margin-bottom: 1em;
  664. // margin-top: .75em;
  665. @include vert-padding-rem(.5);
  666. .caret {
  667. color: #f2f0ec;
  668. margin-right: .75rem;
  669. }
  670. .nav-bar-links {
  671. display: inline;
  672. .nav-bar-link {
  673. padding-right: .5em;
  674. }
  675. }
  676. @media (max-width: $phone-width) {
  677. // font-size: .9em;
  678. font-size: .8em;
  679. }
  680. }// }}}
  681. .hero-tagline{// {{{
  682. margin-top: .3em;
  683. font-size: .8rem;
  684. // font-style: italic;
  685. text-align: center;
  686. .icon {
  687. width: 1.25rem;
  688. }
  689. }// }}}
  690. // }}} hero //
  691. // article-list {{{ //
  692. .article-list h1.list-title {
  693. font-size: 3em;
  694. color: #ffcc66;
  695. }
  696. .article-list article {
  697. padding-top: 4rem;
  698. padding-bottom: 4rem;
  699. margin-bottom: 4rem;
  700. }
  701. .article-list article h2.headline,
  702. .article-list article h2.headline a {
  703. margin-top: 0;
  704. color: #6699cc;
  705. }
  706. .article-list article .meta {
  707. margin-bottom: 1rem;
  708. }
  709. .article-list article .meta .key {
  710. color: #747369;
  711. }
  712. .article-list article .meta .val,
  713. .article-list article .meta .val a {
  714. color: #cc99cc;
  715. }
  716. .article-list article section.summary a { color: #d27b53; }
  717. // }}} article-list //
  718. // article.single {{{ //
  719. article.single {
  720. .meta {
  721. font-size: 0.9em;
  722. text-align: right;
  723. margin-top: .5rem;
  724. margin-bottom: .5rem;
  725. .key {
  726. color: #747369;
  727. }
  728. .val {
  729. color: #cc99cc;
  730. a {
  731. color: #cc99cc;
  732. }
  733. }
  734. }
  735. .body {
  736. padding-top: 1rem;
  737. padding-bottom: 3rem;
  738. }
  739. @media (max-width: $max-page-width) {
  740. .meta {
  741. padding-left: 2rem;
  742. padding-right: 2rem;
  743. }
  744. .body {
  745. padding-top: .5rem;
  746. padding-bottom: 1rem;
  747. }
  748. }
  749. }
  750. article.single h1.headline {
  751. margin-top: 0;
  752. font-size: 3em;
  753. color: #ffcc66;
  754. }
  755. @media (max-width: $max-page-width) {
  756. article.single h1.headline {
  757. font-size: 2em;
  758. padding-left: 2rem;
  759. padding-right: 2rem;
  760. }
  761. }
  762. /* Highlight Colors */
  763. article.single section.body h1 { color: #6699cc; }
  764. article.single section.body h2 { color: #99cc99; }
  765. article.single section.body h3 { color: #f99157; }
  766. article.single section.body h4 { color: #f2777a; }
  767. article.single section.body h5 { color: #515151; }
  768. article.single section.body h6 { color: #747369; }
  769. // article.single section.body a,a:visited { color: #a06700; }
  770. article.single section.body a,a:visited { color: $base-sky-blue; }
  771. /* Article Elements */
  772. article.single * {
  773. max-width: 100%;
  774. }
  775. article.single pre {
  776. margin-top: 0;
  777. margin-bottom: 1rem;
  778. // overflow-x: auto;
  779. border-radius: 3px;
  780. padding: 2rem;
  781. }
  782. article.single p code {
  783. padding: 0.2em 0.5em;
  784. border-radius: 3px;
  785. background: #747369;
  786. color: #f2f0ec;
  787. }
  788. article.single figure, article.single div.highlight {
  789. box-sizing: border-box;
  790. max-width: 52rem;
  791. width: 52rem;
  792. margin-bottom: 1rem;
  793. padding: 1em;
  794. background-color: #393939;
  795. }
  796. @media (max-width: $max-page-width) {
  797. article.single figure, article.single div.highlight {
  798. width: 100%;
  799. margin-left: 0;
  800. margin-right: 0;
  801. border-radius: 3px;
  802. }
  803. }
  804. article.single figure img {
  805. max-width: 100%;
  806. width: 100%;
  807. border-radius: 3px;
  808. }
  809. article.single figure figcaption {
  810. margin-top: 1rem;
  811. }
  812. article.single figure figcaption h4 {
  813. margin-top: 0;
  814. text-align: center;
  815. font-style: italic;
  816. font-weight: normal;
  817. color: #f2f0ec;
  818. }
  819. article.single table {
  820. border-collapse: separate;
  821. border-spacing: 0;
  822. max-width: 100%;
  823. width: 100%;
  824. }
  825. article.single th,
  826. article.single td {
  827. padding: .25rem 1rem;
  828. line-height: inherit;
  829. border-bottom-width: 1px;
  830. border-bottom-style: solid;
  831. border-bottom-color: $base04;
  832. }
  833. article.single tr:last-child td {
  834. border-bottom: 0;
  835. }
  836. article.single th {
  837. text-align: left;
  838. font-weight: bold;
  839. vertical-align: bottom;
  840. }
  841. article.single td { vertical-align: top }
  842. article.single blockquote {
  843. margin-left: 2rem;
  844. margin-right: 3rem;
  845. padding-left: 1rem;
  846. border-left: 5px solid #66cccc;
  847. }
  848. article.single hr {
  849. border: 0;
  850. border-bottom-style: solid;
  851. border-bottom-width: 1px;
  852. border-bottom-color: $base04;
  853. }
  854. // }}} article.single //
  855. // Pygments {{{ //
  856. pre { background: #2d2d2d; color: #f2f0ec }
  857. .highlight .hll { background-color: #515151 }
  858. .highlight .c { color: #747369 } /* Comment */
  859. .highlight .err { color: #f2777a } /* Error */
  860. .highlight .k { color: #cc99cc } /* Keyword */
  861. .highlight .l { color: #f99157 } /* Literal */
  862. .highlight .n { color: #f2f0ec } /* Name */
  863. .highlight .o { color: #66cccc } /* Operator */
  864. .highlight .p { color: #f2f0ec } /* Punctuation */
  865. .highlight .cm { color: #747369 } /* Comment.Multiline */
  866. .highlight .cp { color: #747369 } /* Comment.Preproc */
  867. .highlight .c1 { color: #747369 } /* Comment.Single */
  868. .highlight .cs { color: #747369 } /* Comment.Special */
  869. .highlight .gd { color: #f2777a } /* Generic.Deleted */
  870. .highlight .ge { font-style: italic } /* Generic.Emph */
  871. .highlight .gh { color: #f2f0ec; font-weight: bold } /* Generic.Heading */
  872. .highlight .gi { color: #99cc99 } /* Generic.Inserted */
  873. .highlight .gp { color: #747369; font-weight: bold } /* Generic.Prompt */
  874. .highlight .gs { font-weight: bold } /* Generic.Strong */
  875. .highlight .gu { color: #66cccc; font-weight: bold } /* Generic.Subheading */
  876. .highlight .kc { color: #cc99cc } /* Keyword.Constant */
  877. .highlight .kd { color: #cc99cc } /* Keyword.Declaration */
  878. .highlight .kn { color: #66cccc } /* Keyword.Namespace */
  879. .highlight .kp { color: #cc99cc } /* Keyword.Pseudo */
  880. .highlight .kr { color: #cc99cc } /* Keyword.Reserved */
  881. .highlight .kt { color: #ffcc66 } /* Keyword.Type */
  882. .highlight .ld { color: #99cc99 } /* Literal.Date */
  883. .highlight .m { color: #f99157 } /* Literal.Number */
  884. .highlight .s { color: #99cc99 } /* Literal.String */
  885. .highlight .na { color: #6699cc } /* Name.Attribute */
  886. .highlight .nb { color: #f2f0ec } /* Name.Builtin */
  887. .highlight .nc { color: #ffcc66 } /* Name.Class */
  888. .highlight .no { color: #f2777a } /* Name.Constant */
  889. .highlight .nd { color: #66cccc } /* Name.Decorator */
  890. .highlight .ni { color: #f2f0ec } /* Name.Entity */
  891. .highlight .ne { color: #f2777a } /* Name.Exception */
  892. .highlight .nf { color: #6699cc } /* Name.Function */
  893. .highlight .nl { color: #f2f0ec } /* Name.Label */
  894. .highlight .nn { color: #ffcc66 } /* Name.Namespace */
  895. .highlight .nx { color: #6699cc } /* Name.Other */
  896. .highlight .py { color: #f2f0ec } /* Name.Property */
  897. .highlight .nt { color: #66cccc } /* Name.Tag */
  898. .highlight .nv { color: #f2777a } /* Name.Variable */
  899. .highlight .ow { color: #66cccc } /* Operator.Word */
  900. .highlight .w { color: #f2f0ec } /* Text.Whitespace */
  901. .highlight .mf { color: #f99157 } /* Literal.Number.Float */
  902. .highlight .mh { color: #f99157 } /* Literal.Number.Hex */
  903. .highlight .mi { color: #f99157 } /* Literal.Number.Integer */
  904. .highlight .mo { color: #f99157 } /* Literal.Number.Oct */
  905. .highlight .sb { color: #99cc99 } /* Literal.String.Backtick */
  906. .highlight .sc { color: #f2f0ec } /* Literal.String.Char */
  907. .highlight .sd { color: #747369 } /* Literal.String.Doc */
  908. .highlight .s2 { color: #99cc99 } /* Literal.String.Double */
  909. .highlight .se { color: #f99157 } /* Literal.String.Escape */
  910. .highlight .sh { color: #99cc99 } /* Literal.String.Heredoc */
  911. .highlight .si { color: #f99157 } /* Literal.String.Interpol */
  912. .highlight .sx { color: #99cc99 } /* Literal.String.Other */
  913. .highlight .sr { color: #99cc99 } /* Literal.String.Regex */
  914. .highlight .s1 { color: #99cc99 } /* Literal.String.Single */
  915. .highlight .ss { color: #99cc99 } /* Literal.String.Symbol */
  916. .highlight .bp { color: #f2f0ec } /* Name.Builtin.Pseudo */
  917. .highlight .vc { color: #f2777a } /* Name.Variable.Class */
  918. .highlight .vg { color: #f2777a } /* Name.Variable.Global */
  919. .highlight .vi { color: #f2777a } /* Name.Variable.Instance */
  920. .highlight .il { color: #f99157 } /* Literal.Number.Integer.Long */
  921. /*# sourceMappingURL=style.css.map */
  922. // }}} Pygments //