-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.css
More file actions
70 lines (58 loc) · 1.62 KB
/
Copy pathoptions.css
File metadata and controls
70 lines (58 loc) · 1.62 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
:root {
--blue: #1a73e8;
--blue-dark: #1666c1;
--fg: #202124;
--muted: #5f6368;
--border: #dadce0;
--green: #188038;
}
body {
font-family: "Segoe UI", Roboto, system-ui, sans-serif;
color: var(--fg);
background: #f8f9fa;
margin: 0;
padding: 32px 16px;
}
main {
max-width: 560px;
margin: 0 auto;
background: #fff;
border: 1px solid var(--border);
border-radius: 12px;
padding: 24px 28px 28px;
}
h1 { font-size: 20px; margin: 0 0 8px; }
h2 { font-size: 15px; margin: 0 0 6px; }
section { padding: 18px 0; border-top: 1px solid var(--border); }
section:first-of-type { border-top: none; }
.hint { color: var(--muted); font-size: 13px; margin: 0 0 12px; }
.setup { margin-top: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: var(--muted); }
select,
input[type="text"] {
font-size: 14px;
padding: 8px 10px;
border: 1px solid var(--border);
border-radius: 8px;
background: #fff;
color: var(--fg);
font-family: inherit;
}
.row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
button.primary {
background: var(--blue);
color: #fff;
border: none;
padding: 9px 16px;
border-radius: 8px;
font-size: 14px;
cursor: pointer;
}
button.primary:hover { background: var(--blue-dark); }
button.primary:disabled { opacity: 0.6; cursor: default; }
.auth-status { font-size: 13px; color: var(--muted); }
.auth-status.ok { color: var(--green); }
.auth-status.err { color: #d93025; }
.saved { color: var(--green); font-size: 13px; }
.hidden { display: none; }
code { background: #f1f3f4; padding: 1px 5px; border-radius: 4px; font-size: 12px; }