-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.css
More file actions
52 lines (52 loc) · 2.29 KB
/
Copy pathoptions.css
File metadata and controls
52 lines (52 loc) · 2.29 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
body {
margin: 0;
font-family: -apple-system, system-ui, sans-serif;
font-variant-emoji: text;
background: #14161f;
color: #eee;
}
main { max-width: 560px; margin: 0 auto; padding: 24px 16px 60px; }
h1 { font-size: 20px; margin-bottom: 4px; }
h2 { font-size: 15px; margin: 28px 0 6px; }
section { border-top: 1px solid #2a2f3d; padding-top: 8px; }
section:first-of-type { border-top: none; }
.hint { font-size: 12px; opacity: 0.65; line-height: 1.5; margin: 4px 0 14px; }
.add-row { display: flex; gap: 8px; margin-bottom: 14px; }
.add-row input {
flex: 1; padding: 8px 10px; border-radius: 6px; border: 1px solid #444;
background: #1f2330; color: #fff; font-size: 13px;
}
.add-row button {
padding: 8px 16px; border-radius: 6px; border: none;
background: #2b6cff; color: #fff; cursor: pointer; font-size: 13px;
}
table { width: 100%; border-collapse: collapse; font-size: 13px; }
th { text-align: left; opacity: 0.6; font-weight: 500; padding: 6px 4px; font-size: 11px; text-transform: uppercase; }
td { padding: 8px 4px; border-top: 1px solid #232838; }
td.pattern { word-break: break-all; }
button.remove {
background: none; border: none; color: #ff6b6b; cursor: pointer; font-size: 12px; text-decoration: underline;
}
.empty-hint { font-size: 12px; opacity: 0.55; display: none; }
.row { margin-bottom: 16px; }
.row label { display: block; font-size: 13px; opacity: 0.9; margin-bottom: 6px; }
.row .val { float: right; opacity: 0.6; font-weight: 400; }
input[type="range"] { width: 100%; }
input[type="number"], select {
width: 100%; max-width: 260px; padding: 8px; border-radius: 6px; border: 1px solid #444;
background: #1f2330; color: #fff; font-size: 13px;
}
.seg { display: flex; gap: 8px; max-width: 260px; }
.seg button {
flex: 1; padding: 8px; border-radius: 6px; border: 1px solid #444;
background: #1f2330; color: #fff; cursor: pointer; font-size: 13px;
}
.seg button.active { background: #2b6cff; border-color: #2b6cff; }
.checkbox-row { display: flex; align-items: center; justify-content: space-between; max-width: 400px; }
.checkbox-row label { margin: 0; padding-right: 12px; }
.saved {
position: fixed; bottom: 16px; right: 16px;
background: #2b6cff; color: #fff; padding: 8px 14px; border-radius: 6px;
font-size: 12px; opacity: 0; transition: opacity 0.2s;
}
.saved.show { opacity: 1; }