-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathRequest.scss
68 lines (67 loc) · 1.2 KB
/
Request.scss
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
.Request {
flex: 4 !important;
padding: 1em;
position: relative;
@media all and (max-width: 40em) {
flex: auto !important;
padding: 2em 0;
}
h2,
h2 > pre {
margin: 0;
}
.headers,
.payload,
pre {
white-space: normal;
}
.react-json-view {
background: white !important;
font-family: Inconsolata, monospace !important;
padding: 1em;
word-break: break-all;
}
.response {
border: 1px solid #ebebeb;
display: inline-block;
margin-left: 1rem;
padding: 0.25rem;
}
.controls {
align-items: center;
justify-content: center;
z-index: 2;
margin-top: 2em;
flex-wrap: wrap;
button,
input {
padding: 0.25em 0.5em;
font: inherit;
border-radius: 3px;
}
button {
cursor: pointer;
}
input {
margin-top: 5px;
display: block;
border: 1px solid #bbb;
width: 100%;
}
.delete {
color: #db2828;
display: inline-block;
border-radius: 3px;
border: 1px solid #db2828;
&:hover,
&:active {
background: #db2828;
color: #fff;
}
&:focus {
outline: none;
box-shadow: 0 0 3px #db2828;
}
}
}
}