-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
76 lines (64 loc) · 1.09 KB
/
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
70
71
72
73
74
75
76
html {
overflow-y: auto;
}
header {
background-color: rgba(0,0,0,0.8);
padding: 10px;
color: white;
}
#url-label {
width: 40%;
}
#url-input {
width: 100%;
display: inline;
}
#url-error-box-container {
position: relative;
width: 0;
height: 0;
}
#url-error-box {
display: none;
position: absolute;
left: 0;
top: 0;
padding: 10px;
background-color: rgba(255,0,0,0.8);
z-index: 100;
white-space: nowrap;
border-radius: 10px;
}
.client-inner-container {
background-color: #eeeeee;
padding: 10px;
margin: 10px;
box-shadow: 0 0 20px -5px black;
}
.client-status-bar {
float: right;
}
.client-request-input {
min-width: 100%;
max-width: 100%;
display: block;
margin-bottom: 2px;
}
.response-log {
-webkit-user-select: text;
margin-top: 0;
min-height: 100px;
background-color: white;
box-shadow: 0 0 10px -3px black inset;
overflow-y: auto;
max-height: 400px;
}
.server-color {
color: #0000D8;
}
.client-color {
color: #009600;
}
.status-color {
color: #DD7300;
}