-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontent.css
More file actions
219 lines (198 loc) · 4.52 KB
/
content.css
File metadata and controls
219 lines (198 loc) · 4.52 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
/* LMATFY - Modern Minimal Design */
/* Smooth overlay - no blur, just clean fade */
.lmatfy-overlay {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.4);
z-index: 99998;
pointer-events: none;
opacity: 0;
animation: lmatfy-fade-in 0.3s ease forwards;
}
@keyframes lmatfy-fade-in {
to { opacity: 1; }
}
/* Message card - minimal glass effect */
.lmatfy-message {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: rgba(255, 255, 255, 0.95);
padding: 44px 52px;
border-radius: 16px;
font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
z-index: 100001;
box-shadow:
0 0 0 1px rgba(0, 0, 0, 0.04),
0 8px 40px rgba(0, 0, 0, 0.12);
text-align: center;
max-width: 380px;
opacity: 0;
animation: lmatfy-slide-up 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes lmatfy-slide-up {
from {
opacity: 0;
transform: translate(-50%, -46%);
}
to {
opacity: 1;
transform: translate(-50%, -50%);
}
}
.lmatfy-message h1 {
margin: 0 0 8px 0;
font-size: 19px;
font-weight: 600;
color: #000;
letter-spacing: -0.3px;
}
.lmatfy-message p {
margin: 0;
font-size: 14px;
color: #6e6e73;
line-height: 1.5;
font-weight: 400;
}
.lmatfy-message .countdown {
margin-top: 20px;
font-size: 12px;
color: #86868b;
font-weight: 500;
letter-spacing: 0.2px;
}
.lmatfy-message .countdown span {
color: #0071e3;
font-weight: 600;
font-variant-numeric: tabular-nums;
}
/* Spotlight - clean ring highlight */
.lmatfy-spotlight {
position: relative !important;
z-index: 99999 !important;
border-radius: 8px !important;
outline: 2px solid #0071e3 !important;
outline-offset: 2px !important;
box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.4) !important;
animation: none !important;
}
/* Cursor - clean pointer */
.lmatfy-cursor {
position: fixed;
width: 18px;
height: 18px;
pointer-events: none;
z-index: 100002;
transition:
left 0.35s cubic-bezier(0.16, 1, 0.3, 1),
top 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.lmatfy-cursor svg {
width: 100%;
height: 100%;
filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}
/* Click effect - subtle ring */
.lmatfy-click-ripple {
position: fixed;
width: 24px;
height: 24px;
border-radius: 50%;
border: 2px solid #0071e3;
background: transparent;
transform: translate(-50%, -50%) scale(0.5);
opacity: 1;
animation: lmatfy-ring 0.4s ease-out forwards;
pointer-events: none;
z-index: 100003;
}
@keyframes lmatfy-ring {
to {
transform: translate(-50%, -50%) scale(1.5);
opacity: 0;
}
}
/* Success card */
.lmatfy-success {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: rgba(255, 255, 255, 0.95);
padding: 44px 52px;
border-radius: 16px;
font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
z-index: 100001;
box-shadow:
0 0 0 1px rgba(0, 0, 0, 0.04),
0 8px 40px rgba(0, 0, 0, 0.12);
text-align: center;
opacity: 0;
animation: lmatfy-slide-up 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.lmatfy-success h1 {
margin: 0 0 6px 0;
font-size: 19px;
font-weight: 600;
color: #1d1d1f;
}
.lmatfy-success p {
margin: 0;
font-size: 14px;
color: #34c759;
font-weight: 500;
}
/* Error card */
.lmatfy-error {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: rgba(255, 255, 255, 0.95);
padding: 40px 48px;
border-radius: 16px;
font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
z-index: 100001;
box-shadow:
0 0 0 1px rgba(0, 0, 0, 0.04),
0 8px 40px rgba(0, 0, 0, 0.12);
text-align: center;
max-width: 340px;
opacity: 0;
animation: lmatfy-slide-up 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.lmatfy-error h1 {
margin: 0 0 8px 0;
font-size: 17px;
font-weight: 600;
color: #1d1d1f;
}
.lmatfy-error p {
margin: 0;
font-size: 13px;
color: #6e6e73;
line-height: 1.5;
}
/* Skip button - minimal */
.lmatfy-skip {
position: fixed;
bottom: 24px;
right: 24px;
background: rgba(255, 255, 255, 0.9);
color: #6e6e73;
border: none;
padding: 8px 14px;
border-radius: 6px;
font-size: 12px;
font-weight: 500;
cursor: pointer;
z-index: 100001;
font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
transition: all 0.2s ease;
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04), 0 2px 8px rgba(0, 0, 0, 0.08);
}
.lmatfy-skip:hover {
background: #fff;
color: #1d1d1f;
}