source: cats/SCHEMAcat/branches/urn.org.isocat.schemacat.site/site/lib/pretify/prettify-bootstrap-light.css @ 4241

Last change on this file since 4241 was 4241, checked in by andmor, 10 years ago

Updated branch for Bootstrap 3

File size: 1.3 KB
Line 
1/* Pretty printing styles. Used with prettify.js.
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. */
57pre.prettyprint {
58  background-color: #F7F7F9;
59  padding: 10px;
60  border: 1px solid #E1E1E8; }
61
62pre.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 */
66ol.linenums {
67  color: #1E347B;
68}
69
70ol.linenums li {
71  color: #BEBEC5;
72  line-height: 18px;
73  padding-left: 12px;
74  text-shadow: 0 1px 0 #FFFFFF; }
75
76li.L0,
77li.L1,
78li.L2,
79li.L3,
80li.L5,
81li.L6,
82li.L7,
83li.L8 {
84  list-style-type: normal; }
85
86/* Alternate shading for lines */
87li.L1,
88li.L3,
89li.L5,
90li.L7,
91li.L9 {
92  background: #eee; }
Note: See TracBrowser for help on using the repository browser.