-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathstyle.css
69 lines (57 loc) · 827 Bytes
/
style.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
body {
padding-left: 20px;
background-color: #1e1e1e;
color: white;
font-family: "Ubuntu Mono", "Lucida Console", monospace;
}
#method {
display: block;
min-height: 60px;
}
#corrections {
min-height: 40px;
}
#response {
width: 800px;
}
input {
margin-bottom: 20px;
background-color: #2b2b2b;
color: white;
border: none;
padding: 4px;
font-size: 16px;
}
select {
min-width: 80px;
margin-bottom: 20px;
background-color: #2b2b2b;
color: white;
border: none;
padding: 2px;
font-size: 16px;
}
code, input, pre {
font-family: "Ubuntu Mono", "Lucida Console", monospace;
}
.keyword {
color: #569cd6;
}
.var {
color: #9cdcfe;
}
.type {
color: #4ec9b0;
}
.func {
color: #dcdcaa;
}
.string, #response {
color: #ce9178;
}
.wrong {
background-color: #681616;
}
.right {
background-color: #174217;
}