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.

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