-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.css
More file actions
191 lines (162 loc) · 3.17 KB
/
Copy pathoptions.css
File metadata and controls
191 lines (162 loc) · 3.17 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
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
191
:root {
--bg: #fafbfc;
--panel: #ffffff;
--fg: #1b1f24;
--muted: #6b7280;
--border: #e4e7eb;
--accent: #2f6feb;
--accent-fg: #ffffff;
--ok: #1e8e3e;
--mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
--radius: 8px;
}
@media (prefers-color-scheme: dark) {
:root {
--bg: #0f1216;
--panel: #171b21;
--fg: #e8ecf1;
--muted: #9aa3af;
--border: #2a2f37;
--accent: #4c8bf5;
}
}
* { box-sizing: border-box; }
html, body {
margin: 0;
padding: 0;
background: var(--bg);
color: var(--fg);
font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
font-size: 14px;
line-height: 1.5;
}
main {
max-width: 640px;
margin: 48px auto;
padding: 28px 32px 24px;
background: var(--panel);
border: 1px solid var(--border);
border-radius: 12px;
}
header h1 {
margin: 0 0 4px;
font-size: 22px;
font-weight: 700;
}
header .lede {
margin: 0 0 20px;
color: var(--muted);
font-size: 13px;
}
section {
padding: 16px 0;
border-top: 1px solid var(--border);
}
section:first-of-type { border-top: none; padding-top: 4px; }
h2 {
font-size: 13px;
text-transform: uppercase;
letter-spacing: 0.04em;
color: var(--muted);
margin: 0 0 10px;
}
.row {
display: flex;
flex-direction: column;
gap: 6px;
}
.row label {
display: flex;
align-items: center;
gap: 8px;
padding: 6px 8px;
border-radius: var(--radius);
border: 1px solid transparent;
cursor: pointer;
}
.row label:hover { border-color: var(--border); }
.row label em {
color: var(--muted);
font-style: normal;
font-size: 12px;
}
.row-single {
display: flex;
align-items: center;
justify-content: space-between;
gap: 14px;
margin: 8px 0;
}
.row-single span { font-size: 13px; }
.checkbox {
display: flex;
align-items: center;
gap: 8px;
margin: 6px 0;
cursor: pointer;
}
input[type="text"], input[type="number"], select {
font: inherit;
padding: 7px 9px;
border: 1px solid var(--border);
background: var(--bg);
color: var(--fg);
border-radius: var(--radius);
min-width: 180px;
}
input[type="text"] { width: 100%; font-family: var(--mono); font-size: 12.5px; }
.help {
color: var(--muted);
font-size: 12px;
margin: 6px 0;
}
code {
font-family: var(--mono);
background: var(--bg);
border: 1px solid var(--border);
padding: 0 4px;
border-radius: 3px;
font-size: 12px;
}
.bullets {
margin: 0;
padding-left: 20px;
color: var(--muted);
font-size: 13px;
}
.bullets li { margin-bottom: 4px; }
.actions {
display: flex;
align-items: center;
gap: 10px;
border-top: 1px solid var(--border);
padding-top: 16px;
}
button {
padding: 8px 14px;
border-radius: var(--radius);
border: 1px solid var(--border);
background: var(--bg);
color: var(--fg);
font: inherit;
cursor: pointer;
}
button.primary {
background: var(--accent);
color: var(--accent-fg);
border-color: var(--accent);
}
button.primary:hover { filter: brightness(1.05); }
.saved {
color: var(--ok);
font-size: 12px;
margin-left: 6px;
}
footer {
margin-top: 18px;
color: var(--muted);
font-size: 12px;
text-align: center;
}
footer a { color: var(--muted); }
footer .sep { margin: 0 6px; opacity: 0.6; }