-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.css
More file actions
85 lines (75 loc) · 1.26 KB
/
Copy pathpopup.css
File metadata and controls
85 lines (75 loc) · 1.26 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
:root {
--bg: #15191b;
--panel: #1d2225;
--panel-soft: #252b2f;
--ink: #f3f6f7;
--muted: #a8b0b6;
--accent: #4da2ff;
}
* {
box-sizing: border-box;
}
body {
width: 300px;
margin: 0;
background: var(--bg);
color: var(--ink);
font-family:
Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
sans-serif;
letter-spacing: 0;
}
button {
width: 100%;
min-height: 40px;
border: 0;
border-radius: 8px;
background: var(--accent);
color: #071018;
cursor: pointer;
font: inherit;
font-weight: 800;
}
.popup-shell {
display: grid;
gap: 16px;
padding: 16px;
}
.brand-row {
display: flex;
gap: 12px;
align-items: center;
}
.brand-mark {
display: inline-grid;
width: 48px;
height: 40px;
place-items: center;
border-radius: 8px;
background: linear-gradient(180deg, #2c3439, #20262a);
box-shadow: inset 0 0 0 3px rgba(77, 162, 255, 0.8);
color: var(--ink);
font-weight: 850;
}
p,
h1 {
margin: 0;
}
.brand-row p {
color: var(--muted);
font-size: 12px;
font-weight: 700;
}
h1 {
margin-top: 2px;
font-size: 17px;
line-height: 1.2;
}
.summary {
border-radius: 8px;
padding: 12px;
background: var(--panel);
color: var(--muted);
font-size: 13px;
line-height: 1.45;
}