-
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
190 lines (158 loc) · 2.72 KB
/
Copy pathoptions.css
File metadata and controls
190 lines (158 loc) · 2.72 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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
:root {
color-scheme: light dark;
font: message-box;
}
body {
margin: 0;
background: Canvas;
color: CanvasText;
}
main {
box-sizing: border-box;
max-width: 820px;
margin: 0 auto;
padding: 30px 20px 60px;
}
h1 {
margin: 0 0 12px;
font-size: 1.7rem;
}
h2 {
margin-top: 0;
font-size: 1.2rem;
}
section {
margin-top: 28px;
padding-top: 22px;
border-top: 1px solid rgba(128, 128, 128, 0.35);
}
p {
max-width: 72ch;
line-height: 1.5;
}
.introduction {
margin-top: 0;
}
.explanation {
margin-left: 28px;
opacity: 0.8;
}
.status-grid {
display: grid;
grid-template-columns: minmax(130px, 190px) 1fr;
gap: 9px 18px;
margin: 0;
}
.status-grid dt {
font-weight: 600;
}
.status-grid dd {
margin: 0;
overflow-wrap: anywhere;
}
.checkbox-row {
display: flex;
align-items: flex-start;
gap: 10px;
margin: 14px 0;
}
.checkbox-row input {
margin-top: 2px;
}
.actions {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin: 18px 0;
}
button {
box-sizing: border-box;
min-height: 34px;
padding: 6px 14px;
border: 1px solid ButtonBorder;
border-radius: 4px;
background: ButtonFace;
color: ButtonText;
font: inherit;
cursor: pointer;
}
button:hover:not(:disabled) {
filter: brightness(1.08);
}
button:active:not(:disabled) {
filter: brightness(0.94);
}
button:focus-visible,
input:focus-visible {
outline: 2px solid Highlight;
outline-offset: 2px;
}
button:disabled {
cursor: default;
opacity: 0.55;
}
button.secondary {
background: Canvas;
color: CanvasText;
}
button.danger {
border-color: #b3261e;
background: #b3261e;
color: #ffffff;
}
progress {
display: block;
width: min(100%, 620px);
height: 18px;
margin: 16px 0 10px;
}
progress[hidden] {
display: none;
}
#progress-text {
display: block;
min-height: 1.5em;
max-width: 72ch;
line-height: 1.5;
overflow-wrap: anywhere;
}
code {
padding: 1px 4px;
border: 1px solid rgba(128, 128, 128, 0.25);
border-radius: 3px;
background: rgba(128, 128, 128, 0.15);
font-family:
ui-monospace,
"Cascadia Mono",
Consolas,
monospace;
}
noscript {
display: block;
margin-top: 24px;
padding: 12px;
border: 1px solid #b3261e;
border-radius: 4px;
}
@media (max-width: 560px) {
main {
padding: 22px 14px 44px;
}
.status-grid {
grid-template-columns: 1fr;
gap: 3px;
}
.status-grid dd {
margin-bottom: 10px;
}
.explanation {
margin-left: 0;
}
.actions {
flex-direction: column;
align-items: stretch;
}
button {
width: 100%;
}
}