-
Notifications
You must be signed in to change notification settings - Fork 7
/
style.css
57 lines (47 loc) · 790 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
* {
font-family: Consolas, Verdana, monospace;
background-color: #000;
color: #0c0;
}
html, body {
margin: 0px;
padding: 20px;
}
input {
background-color: #080;
color: #fff;
}
textarea {
overflow: auto;
width: 100%;
}
table {
border-spacing: 0px;
border-collapse: collapse;
}
table th, table td {
text-align: left;
padding-right: 10px;
margin: 0px;
}
table th {
text-decoration: underline;
}
table tr.collapsed:hover td,
table tr.expanded:hover td {
cursor: pointer;
background-color: #030;
}
table td {
background-color: #010;
}
td.index, th.index {
text-align: right;
}
pre.payload {
padding: 5px;
margin-left: 20px;
overflow-x: scroll;
max-width: 800px;
background-color: #030;
}