-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.css
More file actions
93 lines (79 loc) · 1.23 KB
/
options.css
File metadata and controls
93 lines (79 loc) · 1.23 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
:root {
--bg: #f3f7f5;
--panel: #ffffff;
--text: #17222f;
--subtle: #576678;
--brand: #12664f;
--border: #d5e2dc;
--ok: #127948;
--error: #b42318;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
background: radial-gradient(circle at top right, #e4f4ed 0%, var(--bg) 60%);
color: var(--text);
}
.page {
max-width: 760px;
margin: 24px auto;
padding: 0 16px;
}
h1 {
margin: 0;
}
.sub {
color: var(--subtle);
}
.card {
border: 1px solid var(--border);
border-radius: 12px;
background: var(--panel);
padding: 16px;
display: grid;
gap: 12px;
}
label {
display: grid;
gap: 6px;
font-size: 14px;
}
select,
input,
button {
font: inherit;
}
select,
input {
width: 100%;
border: 1px solid var(--border);
border-radius: 8px;
padding: 9px;
}
.actions {
display: flex;
justify-content: flex-start;
}
button {
border: 1px solid var(--brand);
border-radius: 8px;
background: var(--brand);
color: #fff;
padding: 9px 16px;
cursor: pointer;
}
.status {
min-height: 16px;
margin: 0;
font-size: 13px;
color: var(--subtle);
}
.status.ok {
color: var(--ok);
}
.status.error {
color: var(--error);
}