-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.css
More file actions
116 lines (97 loc) · 1.83 KB
/
popup.css
File metadata and controls
116 lines (97 loc) · 1.83 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
:root {
--bg: #f6f7fb;
--card: #ffffff;
--text: #111827;
--muted: #6b7280;
--line: #e5e7eb;
--btn: #f3f4f6;
--btn-hover: #e5e7eb;
}
* { box-sizing: border-box; }
body {
margin: 0;
width: 320px;
background: var(--bg);
color: var(--text);
font: 13px/1.35 system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}
.wrap { padding: 12px; }
.header {
padding: 10px 10px 12px;
background: var(--card);
border: 1px solid var(--line);
border-radius: 10px;
margin-bottom: 10px;
}
.title { font-size: 14px; font-weight: 700; }
.subtitle {
margin-top: 2px;
color: var(--muted);
font-size: 12px;
}
.section {
padding: 10px;
background: var(--card);
border: 1px solid var(--line);
border-radius: 10px;
margin-bottom: 10px;
}
.section-title {
font-weight: 600;
margin-bottom: 8px;
color: var(--muted);
font-size: 12px;
letter-spacing: 0.2px;
text-transform: uppercase;
}
.row {
display: flex;
align-items: center;
gap: 10px;
padding: 7px 0;
cursor: pointer;
user-select: none;
}
.row input {
width: 16px;
height: 16px;
margin: 0;
}
.actions {
margin-top: 8px;
padding-top: 8px;
border-top: 1px solid var(--line);
display: flex;
justify-content: flex-start;
}
.btn {
appearance: none;
border: 1px solid var(--line);
background: var(--btn);
color: var(--text);
border-radius: 8px;
padding: 8px 10px;
font-weight: 600;
cursor: pointer;
}
.btn:hover { background: var(--btn-hover); }
.btn:active { transform: translateY(1px); }
.hint {
margin-top: 6px;
color: var(--muted);
font-size: 12px;
line-height: 1.3;
}
.footer { padding: 6px 2px 0; }
.status {
min-height: 16px;
color: var(--muted);
font-size: 12px;
}
.header,
.section {
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}
.btn {
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
}