blob: e24c8986a24c0675393bcbd43bdf53f9b1ed53d3 (
plain)
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
|
html {
background: #ddd;
margin: 0;
padding: 0;
}
body {
margin: 0;
padding: 0;
}
h1 {
font-size: 14pt;
text-align: center;
}
#request {
text-align: center;
}
textarea {
resize: none;
width: calc(100% - 24pt);
height: 40vh;
margin: 6pt 12pt;
}
button {
font-size: 14pt;
}
#response {
width: calc(100% - 24pt);
margin: 0 12pt;
}
.code {
display: flex;
flex-direction: row;
}
.code pre {
width: 43%;
margin: 0 2%;
padding: 1%;
border: 1px solid #aaa;
}
.code pre.orig {
color: #500;
}
.code pre.impr {
color: #050;
}
.expl {
margin: 20pt 2%;
}
|