Last active
February 7, 2018 01:45
-
-
Save gucheen/be98d6ead738222a279ac43cd43f15ae to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$main-font: "Roboto","Helvetica Neue Light","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif; | |
$code-font: "Droid Sans Mono", monospace; | |
/* PRETTY PRINTING STYLES for prettify.js. */ | |
.prettyprint { | |
position: relative; | |
} | |
/* Specify class=linenums on a pre to get line numbering */ | |
ol.linenums { | |
margin: 0; | |
font-family: $main-font; | |
color: #B3B6B7; | |
li { | |
margin: 0; | |
font-family: $code-font; | |
font-size: 90%; | |
line-height: 24px; | |
} | |
} | |
/* The following class|color styles are derived from https://github.com/google/code-prettify/blob/master/src/prettify.css*/ | |
/* SPAN elements with the classes below are added by prettyprint. */ | |
.pln { color: #000 } /* plain text */ | |
@media screen { | |
.str { color: #800 } /* string content */ | |
.kwd { color: #00f } /* a keyword */ | |
.com { color: #060 } /* a comment */ | |
.typ { color: red } /* a type name */ | |
.lit { color: #08c } /* a literal value */ | |
/* punctuation, lisp open bracket, lisp close bracket */ | |
.pun, .opn, .clo { color: #660 } | |
.tag { color: #008 } /* a markup tag name */ | |
.atn { color: #606 } /* a markup attribute name */ | |
.atv { color: #800 } /* a markup attribute value */ | |
.dec, .var { color: #606 } /* a declaration; a variable name */ | |
.fun { color: red } /* a function name */ | |
} | |
/* Use higher contrast and text-weight for printable form. */ | |
@media print, projection { | |
.str { color: #060 } | |
.kwd { color: #006; font-weight: bold } | |
.com { color: #600; font-style: italic } | |
.typ { color: #404; font-weight: bold } | |
.lit { color: #044 } | |
.pun, .opn, .clo { color: #440 } | |
.tag { color: #006; font-weight: bold } | |
.atn { color: #404 } | |
.atv { color: #060 } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment