forked from christhompson/lna-testing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
96 lines (81 loc) · 1.35 KB
/
Copy pathstyle.css
File metadata and controls
96 lines (81 loc) · 1.35 KB
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
* {
box-sizing: border-box;
}
body {
font-family: sans-serif;
margin: 2em 1em;
line-height: 1.5em;
}
main {
width: 60%;
}
h1 {
color: #373fff;
max-width: calc(100% - 5rem);
line-height: 1.1;
}
h2 {
color: #010101;
max-width: calc(100% - 5rem);
line-height: 1.1;
}
h3 {
color: #010101;
max-width: calc(100% - 5rem);
line-height: 1.1;
}
iframe {
width: 100%;
height: 400px;
}
form {
background-color: #eeeeee;
display: grid;
grid-gap: 1em;
grid-template-columns: max-content 1fr;
padding: 1em;
width: 100%;
}
form label {
text-align: right;
}
form input,
form select {
margin-right: auto;
font-size: 16px;
}
#fetch-input-box,
#fetch-headers,
#fetch-body,
#subresource-input-box,
#subframe-input-box {
border: 1px solid silver;
display: block;
margin-bottom: 10px;
padding: 5px;
width: 100%;
}
form input:invalid {
border: 1px solid red;
}
form button {
background-color: #bbbbf2;
border: 2px solid currentColor;
border-radius: 0.25em;
cursor: pointer;
font-size: inherit;
line-height: 1.4em;
padding: 0.25em 1em;
max-width: 20ch;
}
form button:hover {
background-color: lavender;
}
#fetch-results {
margin: 1em;
}
footer {
margin-top: 3em;
padding-top: 1.5em;
border-top: 1px solid lightgrey;
}