-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsyntax.css
executable file
·81 lines (68 loc) · 1.02 KB
/
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
70
71
72
73
74
75
76
77
78
79
80
81
/**
* Arquivo de definição sintática para o analisador de expressões AdvPL.
* @author Marcelo Camargo <[email protected]>
*/
html, body {
padding: 0;
margin: 0;
background: gainsboro;
}
#codegen {
font-family: monospace;
line-height: 20px;
padding: 20px;
}
.keyword {
color: #0077C0;
font-weight: bold;
}
.symbol {
color: #34495E;
}
.number {
color: #AA0C48;
}
.block {
border: 1px solid #333;
color: #6E248D;
background: white;
padding: 2px;
}
.nil {
color: #6E3C1B;
}
.string {
border: 1px solid #333;
color: #B71C0C;
background: white;
padding: 2px;
}
.true {
font-weight: bold;
color: #009C41;
}
.false {
font-weight: bold;
color: #A70C00;
}
.name {
text-decoration: underline;
color: #E67E22;
}
.property {
color: #004790;
}
.folder img {
width: 16px;
height: 16px;
line-height: 20px;
margin-bottom: -3px;
cursor: pointer;
}
.string .extender {
cursor: pointer;
border: 1px solid silver;
padding: 0 3px;
background: #009C41;
color: white;
}