-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.css
More file actions
100 lines (84 loc) · 1.54 KB
/
Copy pathoptions.css
File metadata and controls
100 lines (84 loc) · 1.54 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
:root {
font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
font-size: 16px;
}
body {
margin: 0;
padding: 0;
}
.wrap {
max-width: 760px;
padding: 20px;
margin: 0 auto;
}
h1 {
margin: 0 0 6px 0;
font-size: 24px;
}
h2 {
margin: 0 0 8px 0;
font-size: 18px;
}
.muted {
color: #666;
}
.card {
border: 1px solid #eee;
border-radius: 16px;
padding: 16px;
margin-top: 14px;
}
.row {
display: flex;
align-items: flex-start;
gap: 12px;
}
.row input[type="checkbox"] {
margin-top: 3px;
}
.row2 {
margin-top: 14px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
}
.label {
font-weight: 700;
}
.hint {
font-size: 14px;
color: #666;
margin-top: 3px;
}
#bannerMaxItems {
width: 90px;
padding: 8px 10px;
border: 1px solid #ddd;
border-radius: 12px;
}
.actions {
margin-top: 16px;
display: flex;
align-items: center;
gap: 10px;
}
button {
border: 1px solid rgba(0,0,0,0.12);
background: #fff;
border-radius: 12px;
padding: 10px 14px;
cursor: pointer;
font-weight: 600;
}
button:hover {
background: rgba(0,0,0,0.04);
}
@media (prefers-color-scheme: dark) {
body { background: #121212; color: #f3f3f3; }
.muted, .hint { color: #bdbdbd; }
.card { border-color: rgba(255,255,255,0.14); }
#bannerMaxItems { background: #1b1b1b; border-color: rgba(255,255,255,0.16); color: #f3f3f3; }
button { background: #1b1b1b; border-color: rgba(255,255,255,0.18); color: #f3f3f3; }
button:hover { background: rgba(255,255,255,0.08); }
}