-
Notifications
You must be signed in to change notification settings - Fork 0
Collapse file tree
Files
Search this repository(forward slash) forward slash/
/
Copy pathoptions.css
More file actions
More file actions
Latest commit
296 lines (250 loc) · 4.49 KB
/
Copy pathoptions.css
File metadata and controls
296 lines (250 loc) · 4.49 KB
You must be signed in to make or propose changes
More edit options
Edit and raw actions
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
:root {
color-scheme: light dark;
font: message-box;
--border-color: rgba(128, 128, 128, 0.35);
--muted-background: rgba(128, 128, 128, 0.12);
--danger-color: #b3261e;
--success-color: #16843d;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
background: Canvas;
color: CanvasText;
}
main {
width: 100%;
max-width: 860px;
margin: 0 auto;
padding: 30px 20px 60px;
}
h1 {
margin: 0 0 12px;
font-size: 1.7rem;
}
h2 {
margin: 0 0 12px;
font-size: 1.2rem;
}
section {
margin-top: 28px;
padding-top: 22px;
border-top: 1px solid var(--border-color);
}
p {
max-width: 76ch;
line-height: 1.5;
}
.introduction {
margin-top: 0;
}
.explanation {
max-width: 72ch;
margin-top: 8px;
opacity: 0.82;
}
.status-grid {
display: grid;
grid-template-columns:
minmax(150px, 210px)
minmax(0, 1fr);
gap: 9px 18px;
margin: 0;
}
.status-grid dt {
font-weight: 600;
}
.status-grid dd {
min-width: 0;
margin: 0;
overflow-wrap: anywhere;
}
.import-details {
margin-top: 18px;
padding: 14px;
border: 1px solid var(--border-color);
border-radius: 6px;
background: var(--muted-background);
}
label {
display: block;
margin: 16px 0 7px;
font-weight: 600;
}
.checkbox-row {
display: flex;
align-items: flex-start;
gap: 10px;
margin: 14px 0;
font-weight: normal;
}
.checkbox-row input {
flex: 0 0 auto;
margin-top: 2px;
}
textarea,
button {
font: inherit;
}
textarea {
display: block;
width: min(100%, 620px);
min-height: 120px;
padding: 9px 10px;
border: 1px solid var(--border-color);
border-radius: 4px;
background: Field;
color: FieldText;
line-height: 1.45;
resize: vertical;
}
.actions {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin: 18px 0;
}
button {
min-height: 35px;
padding: 7px 14px;
border: 1px solid ButtonBorder;
border-radius: 4px;
background: ButtonFace;
color: ButtonText;
cursor: pointer;
}
button:hover:not(:disabled) {
filter: brightness(1.08);
}
button:active:not(:disabled) {
filter: brightness(0.94);
}
code,
pre {
font-family:
ui-monospace,
"Cascadia Mono",
Consolas,
monospace;
}
code {
padding: 1px 4px;
border: 1px solid rgba(128, 128, 128, 0.25);
border-radius: 3px;
background: var(--muted-background);
}
pre {
width: min(100%, 620px);
margin: 14px 0;
padding: 12px;
overflow: auto;
border: 1px solid var(--border-color);
border-radius: 5px;
background: var(--muted-background);
line-height: 1.45;
}
pre code {
padding: 0;
border: 0;
background: transparent;
}
noscript {
display: block;
margin-top: 24px;
padding: 12px;
border: 1px solid var(--danger-color);
border-radius: 4px;
}
.status-success {
color: var(--success-color);
}
.status-error {
color: var(--danger-color);
}
@media (max-width: 620px) {
main {
padding: 22px 14px 44px;
}
.status-grid {
grid-template-columns: 1fr;
gap: 3px;
}
.status-grid dd {
margin-bottom: 10px;
}
.actions {
flex-direction: column;
align-items: stretch;
}
button,
textarea {
width: 100%;
}
}