-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.css
More file actions
122 lines (113 loc) · 3.18 KB
/
Copy pathpopup.css
File metadata and controls
122 lines (113 loc) · 3.18 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
:root {
--primary: #e11d48;
--accent: #f43f5e;
--gradient: linear-gradient(135deg, #f43f5e 0%, #c8102e 50%, #7a0a1e 100%);
--bg: #140609;
--bg-2: #1e0a0e;
--text: #f7e9ea;
--text-muted: #c2949a;
--glass: rgba(255, 255, 255, 0.06);
--glass-strong: rgba(255, 255, 255, 0.1);
--border: rgba(255, 180, 185, 0.14);
--ease: cubic-bezier(0.22, 1, 0.36, 1);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
width: 268px;
font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
color: var(--text);
background:
radial-gradient(120% 90% at 50% -10%, rgba(225, 29, 72, 0.28), transparent 60%),
linear-gradient(160deg, var(--bg-2), var(--bg));
}
.wrap {
display: flex;
flex-direction: column;
align-items: center;
padding: 22px 20px 20px;
text-align: center;
}
/* Floating logo — mirrors the app's gently floating eye. */
.logo {
width: 56px; height: 56px; object-fit: contain;
filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 12px rgba(225, 29, 72, 0.5));
animation: logo-float 3.4s ease-in-out infinite;
}
@keyframes logo-float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-6px); }
}
.brand {
margin-top: 10px;
font-size: 17px;
font-weight: 700;
letter-spacing: 0.2px;
}
.tag {
margin-top: 2px;
font-size: 10.5px;
text-transform: uppercase;
letter-spacing: 1.2px;
color: var(--text-muted);
}
/* Connection status card */
.status {
margin-top: 18px;
width: 100%;
display: flex;
align-items: center;
gap: 11px;
padding: 11px 14px;
border-radius: 12px;
background: var(--glass);
border: 1px solid var(--border);
text-align: left;
}
.status .dot {
flex: none;
width: 9px; height: 9px; border-radius: 50%;
background: var(--text-muted); opacity: 0.6;
transition: background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.status-text { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.status-text strong { font-size: 13.5px; font-weight: 600; }
.status-text span { font-size: 11.5px; color: var(--text-muted); }
body.connected .status .dot { background: #34d399; opacity: 1; box-shadow: 0 0 8px rgba(52, 211, 153, 0.7); }
body.active .status .dot { background: var(--accent); box-shadow: 0 0 9px rgba(244, 63, 94, 0.8); }
body.active .status-text strong { color: var(--accent); }
/* Quote */
.quote {
margin-top: 16px;
padding: 13px 14px;
border-radius: 12px;
background: var(--glass);
border: 1px solid var(--border);
width: 100%;
}
.quote-text { font-size: 12.5px; line-height: 1.5; font-style: italic; }
.quote-author {
display: block; margin-top: 6px;
font-size: 11px; font-style: normal; color: var(--text-muted);
}
.quote-author:not(:empty)::before { content: '— '; }
/* Links */
.links {
margin-top: 16px;
display: flex;
gap: 10px;
}
.link {
width: 36px; height: 36px;
display: grid; place-items: center;
border-radius: 10px;
color: var(--text-muted);
background: var(--glass);
border: 1px solid var(--border);
transition: color 0.18s var(--ease), background 0.18s var(--ease), transform 0.18s var(--ease);
}
.link:hover {
color: #fff;
background: var(--gradient);
border-color: transparent;
transform: translateY(-2px);
}