-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpretty.css
60 lines (49 loc) · 1016 Bytes
/
pretty.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/* Pretty print */
.prettyprint .str, /* string content */
.prettyprint .atv {
/* a markup attribute value */
color: rgb(0, 138, 53);
}
.prettyprint .kwd, /* a keyword */
.prettyprint .tag {
/* a markup tag name */
color: rgb(0, 102, 204);
}
.prettyprint .com {
/* a comment */
color: rgb(127, 127, 127);
font-style: italic;
}
.prettyprint .lit {
/* a literal value */
color: rgb(127, 0, 0);
}
.prettyprint .pun, /* punctuation, lisp open bracket, lisp close bracket */
.prettyprint .opn,
.prettyprint .clo {
color: rgb(127, 127, 127);
}
.prettyprint .typ, /* a type name */
.prettyprint .atn, /* a markup attribute name */
.prettyprint .dec,
.prettyprint .var {
/* a declaration; a variable name */
color: rgb(127, 0, 127);
}
pre {
font-family: 'Menlo', monospace;
font-size: 30px;
}
pre.smaller {
font-size: 25px;
}
pre.smallest {
font-size: 16px;
}
pre.tiny {
font-size: 12px;
line-height: 13px;
}
.generated {
opacity: 0.6;
}