-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.css
More file actions
80 lines (80 loc) · 1.35 KB
/
options.css
File metadata and controls
80 lines (80 loc) · 1.35 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
:root {
color-scheme: dark;
}
body {
margin: 0;
padding: 24px;
font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
background: #0b1220;
color: #e2e8f0;
}
.card {
max-width: 720px;
margin: 0 auto;
background: #0f172a;
border: 1px solid rgba(148, 163, 184, 0.25);
border-radius: 16px;
padding: 18px;
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}
h1 {
margin: 0 0 6px 0;
font-size: 20px;
}
.muted {
margin: 0 0 18px 0;
opacity: 0.85;
}
.field {
display: block;
margin: 14px 0;
}
.field > span {
display: block;
font-weight: 600;
margin-bottom: 6px;
}
.field input {
width: 100%;
box-sizing: border-box;
padding: 10px 12px;
border-radius: 12px;
border: 1px solid rgba(148, 163, 184, 0.25);
background: rgba(2, 6, 23, 0.45);
color: #e2e8f0;
outline: none;
}
.hint {
display: block;
margin-top: 6px;
opacity: 0.8;
}
.toggle {
display: flex;
align-items: center;
gap: 10px;
margin: 16px 0;
user-select: none;
}
.actions {
display: flex;
align-items: center;
gap: 12px;
margin-top: 18px;
}
button {
border: 1px solid rgba(148, 163, 184, 0.25);
background: #1e293b;
color: #e2e8f0;
border-radius: 12px;
padding: 10px 14px;
cursor: pointer;
}
button.primary {
background: #2563eb;
border-color: rgba(37, 99, 235, 0.75);
}
.status {
font-size: 13px;
opacity: 0.9;
}