-
Notifications
You must be signed in to change notification settings - Fork 5
/
syntax.css
69 lines (55 loc) · 925 Bytes
/
syntax.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
61
62
63
64
65
66
67
68
69
span.type {
font-variant: small-caps;
font-size: large;
}
span.keyword {
font-weight: bold;
}
span.field {
text-decoration: underline dotted;
}
span.variable {
font-variant: small-caps;
font-size: large;
}
span.variable-or-field {
text-decoration: underline dotted;
font-variant: small-caps;
font-size: large;
}
span.function {
font-style: italic;
}
span.operator {
text-decoration: underline dotted;
font-weight: bold;
}
span.conditional-operator {
text-decoration: underline dotted;
color: #622;
}
span.literal {
color: #622;
}
span.comment-inline, span.block-comment-inline {
color: #226;
font-size: small;
}
ul:not(.syntax-root) {
list-style: disc;
}
span.comment-global {
color: black;
font-size: 1.5em;
border-bottom: 1px solid black;
}
span.block-comment-global {
color: #226;
}
ul.syntax-root > li {
margin-top: 10px;
margin-bottom: 10px;
}
ul.syntax-root {
list-style: none;
}