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: #48484C; }
13
14 .str {
15   color: #DD1144; }
16
17 .kwd {
18   color: #1E347B; }
19
20 .com {
21   color: #93A1A1; }
22
23 .typ {
24   color: teal; }
25
26 .lit {
27   color: #195F91; }
28
29 .pun {
30   color: #93A1A1; }
31
32 .opn {
33   color: #93A1A1; }
34
35 .clo {
36   color: #93A1A1; }
37
38 .tag {
39   color: #008; }
40
41 .atn {
42   color: teal; }
43
44 .atv {
45   color: #DD1144; }
46
47 .dec {
48   color: teal; }
49
50 .var {
51   color: teal; }
52
53 .fun {
54   color: #DC322F; }
55
56 /* Put a border around prettyprinted code snippets. */
57 pre.prettyprint {
58   background-color: #F7F7F9;
59   padding: 10px;
60   border: 1px solid #E1E1E8; }
61
62 pre.prettyprint.linenums {
63   box-shadow: 40px 0 0 #FBFBFC inset, 41px 0 0 #ECECF0 inset; }
64
65 /* Specify class=linenums on a pre to get line numbering */
66 ol.linenums {
67   color: #1E347B;
68   margin: 0 0 0 40px; }
69
70 ol.linenums li {
71   color: #BEBEC5;
72   line-height: 18px;
73   padding-left: 12px;
74   text-shadow: 0 1px 0 #FFFFFF; }
75
76 li.L0,
77 li.L1,
78 li.L2,
79 li.L3,
80 li.L5,
81 li.L6,
82 li.L7,
83 li.L8 {
84   list-style-type: normal; }
85
86 /* Alternate shading for lines */
87 li.L1,
88 li.L3,
89 li.L5,
90 li.L7,
91 li.L9 {
92   background: #eee; }