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.

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