-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpicker.css
More file actions
63 lines (55 loc) · 1.4 KB
/
Copy pathpicker.css
File metadata and controls
63 lines (55 loc) · 1.4 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
:root {
--blue: #1a73e8;
--blue-dark: #1666c1;
--fg: #202124;
--muted: #5f6368;
--border: #dadce0;
--hover: #f1f3f4;
--green: #188038;
--red: #d93025;
}
* { box-sizing: border-box; }
body {
font-family: "Segoe UI", Roboto, system-ui, sans-serif;
color: var(--fg);
background: #f8f9fa;
margin: 0;
padding: 48px 16px;
}
main {
max-width: 480px;
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; }
.hint { color: var(--muted); font-size: 13px; margin: 0 0 20px; }
.drop {
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding: 32px 16px;
border: 2px dashed var(--border);
border-radius: 10px;
color: var(--blue);
cursor: pointer;
font-size: 14px;
}
.drop:hover, .drop.dragover { background: var(--hover); border-color: var(--blue); }
.target { margin-top: 16px; font-size: 12px; color: var(--muted); }
.target b { color: var(--fg); font-weight: 600; }
.status {
margin-top: 14px;
padding: 10px 12px;
border-radius: 8px;
background: var(--hover);
font-size: 13px;
white-space: pre-wrap;
}
.status.ok { background: #e6f4ea; color: var(--green); }
.status.err { background: #fce8e6; color: var(--red); }
.hidden { display: none; }
code { background: var(--hover); padding: 1px 4px; border-radius: 4px; font-size: 12px; }