-
Notifications
You must be signed in to change notification settings - Fork 2
/
main-light.css
88 lines (79 loc) · 1.08 KB
/
main-light.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
82
83
84
85
86
87
88
.head {
color: #222529;
}
body {
max-width: 1024px;
margin-left: auto;
margin-right: auto;
background: #e7e5e4;
color: #222529;
padding: 10px;
}
.document{
border-color: #c8c3c1;
border-style: solid;
border-width: 1px;
padding: 0px 40px 31px 40px;
border-radius: 12px;
}
pre{
font-family: monospace;
margin-left: 30px;
background: #e3e1e0;
padding: 10px;
border-radius: 8px;
}
h1 {
font-weight: bold;
font-size: 22px;
}
h2 {
font-weight: bold;
font-size: 14px;
}
.title{
text-align: center;
font-size: 32px;
}
.literal{
color: #713e13;
}
.name{
color: #6c370a;
}
.number{
color: #f699cb;
}
.builtin, .double{
color: #a85106;
}
.keyword, .operator, .interpol{
color: #28c3b4;
}
.variable{
color: #99cbf6;
}
.double {
color: #6c370a;
}
.comment{
color: #837b71;
}
table {
border-collapse: collapse;
width: 100%;
}
table td, table th {
border: 1px solid #c8c3c1;
padding: 8px;
}
table th {
text-align: left;
color: white;
}
caption {
padding: 8px;
}
a {
color: #a85106;
}