Moxie
2015-11-23 67834872ddd5630b9c30c53c2972f5dcbf3dd5aa
commit | author | age
48fe87 1 /* Pretty printing styles. Used with prettify.js.
M 2  *
3  * This version is slight modified based on the original version.
4  *
5  * Name:    Stanley Ng
6  * Email:     stanleyhlng@googlegroups.com
7  * 
8  * Reference:
9  * http://code.google.com/p/google-code-prettify/source/browse/trunk/src/prettify.css
10  */
11 .pln {
12   color: #ffffff; }
13
14 .str {
15   color: #d1f1a9; }
16
17 .kwd {
18   color: #ebbbff; }
19
20 .com {
21   color: #7285b7;
22   font-style: italic; }
23
24 .typ {
25   color: #bbdaff; }
26
27 .lit {
28   color: #ffc58f; }
29
30 .pun {
31   color: #ffffff; }
32
33 .opn {
34   color: #ffffff; }
35
36 .clo {
37   color: #ffffff; }
38
39 .tag {
40   color: #ff9da4; }
41
42 .atn {
43   color: #ffc58f; }
44
45 .atv {
46   color: #99ffff; }
47
48 .dec {
49   color: #ffc58f; }
50
51 .var {
52   color: #ff9da4; }
53
54 .fun {
55   color: #bbdaff; }
56
57 /* Put a border around prettyprinted code snippets. */
58 pre.prettyprint {
59   background-color: #002451;
60   padding: 10px;
61   border: 1px solid #E1E1E8; }
62
63 /* Specify class=linenums on a pre to get line numbering */
64 ol.linenums {
65   color: #7285b7;
66   margin: 0 0 0 40px; }
67
68 ol.linenums li {
69   line-height: 18px;
70   padding-left: 12px; }