honeymcp 0.1.1__py3-none-any.whl → 0.1.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- honeymcp/api/__init__.py +1 -0
- honeymcp/api/app.py +218 -0
- honeymcp/cli_tool_creator.py +110 -0
- honeymcp/core/catalog_updater.py +290 -0
- honeymcp/core/ghost_tools.py +437 -0
- honeymcp/core/middleware.py +57 -0
- honeymcp/core/tool_creator.py +499 -0
- honeymcp/dashboard/react_umd/app.js +375 -0
- honeymcp/dashboard/react_umd/index.html +24 -0
- honeymcp/dashboard/react_umd/styles.css +512 -0
- {honeymcp-0.1.1.dist-info → honeymcp-0.1.3.dist-info}/METADATA +150 -27
- {honeymcp-0.1.1.dist-info → honeymcp-0.1.3.dist-info}/RECORD +15 -8
- honeymcp/dashboard/app.py +0 -228
- {honeymcp-0.1.1.dist-info → honeymcp-0.1.3.dist-info}/WHEEL +0 -0
- {honeymcp-0.1.1.dist-info → honeymcp-0.1.3.dist-info}/entry_points.txt +0 -0
- {honeymcp-0.1.1.dist-info → honeymcp-0.1.3.dist-info}/licenses/LICENSE +0 -0
|
@@ -0,0 +1,512 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
/* Brand - Honey/Amber/Gold */
|
|
3
|
+
--brand-50: #fffbeb;
|
|
4
|
+
--brand-100: #fef3c7;
|
|
5
|
+
--brand-200: #fde68a;
|
|
6
|
+
--brand-300: #fcd34d;
|
|
7
|
+
--brand-400: #fbbf24;
|
|
8
|
+
--brand-500: #f59e0b;
|
|
9
|
+
--brand-600: #d97706;
|
|
10
|
+
--brand-700: #b45309;
|
|
11
|
+
--brand-800: #92400e;
|
|
12
|
+
--brand-900: #78350f;
|
|
13
|
+
--brand-950: #451a03;
|
|
14
|
+
|
|
15
|
+
/* Neutrals - Slate */
|
|
16
|
+
--slate-50: #f8fafc;
|
|
17
|
+
--slate-100: #f1f5f9;
|
|
18
|
+
--slate-200: #e2e8f0;
|
|
19
|
+
--slate-300: #cbd5e1;
|
|
20
|
+
--slate-400: #94a3b8;
|
|
21
|
+
--slate-500: #64748b;
|
|
22
|
+
--slate-600: #475569;
|
|
23
|
+
--slate-700: #334155;
|
|
24
|
+
--slate-800: #1e293b;
|
|
25
|
+
--slate-900: #0f172a;
|
|
26
|
+
--slate-950: #020617;
|
|
27
|
+
|
|
28
|
+
--white: #ffffff;
|
|
29
|
+
|
|
30
|
+
/* Semantic Colors */
|
|
31
|
+
--bg-app: #0f0a05;
|
|
32
|
+
--bg-surface: rgba(255, 255, 255, 0.03);
|
|
33
|
+
|
|
34
|
+
--text-primary: var(--slate-100);
|
|
35
|
+
--text-secondary: var(--slate-400);
|
|
36
|
+
--text-tertiary: var(--slate-500);
|
|
37
|
+
|
|
38
|
+
--border-subtle: rgba(255, 255, 255, 0.08);
|
|
39
|
+
--border-medium: rgba(255, 255, 255, 0.15);
|
|
40
|
+
|
|
41
|
+
/* Threat Levels */
|
|
42
|
+
--critical-bg: rgba(153, 27, 27, 0.2);
|
|
43
|
+
--critical-text: #fca5a5;
|
|
44
|
+
--critical-border: rgba(252, 165, 165, 0.3);
|
|
45
|
+
|
|
46
|
+
--high-bg: rgba(154, 52, 18, 0.2);
|
|
47
|
+
--high-text: #fdba74;
|
|
48
|
+
--high-border: rgba(253, 186, 116, 0.3);
|
|
49
|
+
|
|
50
|
+
--medium-bg: rgba(146, 64, 14, 0.2);
|
|
51
|
+
--medium-text: #fcd34d;
|
|
52
|
+
--medium-border: rgba(252, 211, 77, 0.3);
|
|
53
|
+
|
|
54
|
+
--low-bg: rgba(22, 101, 52, 0.2);
|
|
55
|
+
--low-text: #86efac;
|
|
56
|
+
--low-border: rgba(134, 239, 172, 0.3);
|
|
57
|
+
|
|
58
|
+
/* Shadows refined for dark mode */
|
|
59
|
+
--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
|
|
60
|
+
--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -2px rgba(0, 0, 0, 0.2);
|
|
61
|
+
--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.3);
|
|
62
|
+
|
|
63
|
+
/* Animations */
|
|
64
|
+
--transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
|
|
65
|
+
--transition-medium: 300ms cubic-bezier(0.4, 0, 0.2, 1);
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
/* Reset & Base */
|
|
69
|
+
*,
|
|
70
|
+
*::before,
|
|
71
|
+
*::after {
|
|
72
|
+
box-sizing: border-box;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
body {
|
|
76
|
+
margin: 0;
|
|
77
|
+
font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
|
|
78
|
+
background-color: var(--bg-app);
|
|
79
|
+
background-image:
|
|
80
|
+
radial-gradient(at 0% 0%, rgba(245, 158, 11, 0.15) 0px, transparent 50%),
|
|
81
|
+
radial-gradient(at 100% 0%, rgba(234, 179, 8, 0.15) 0px, transparent 50%),
|
|
82
|
+
radial-gradient(at 100% 100%, rgba(245, 158, 11, 0.1) 0px, transparent 50%),
|
|
83
|
+
radial-gradient(at 0% 100%, rgba(180, 83, 9, 0.1) 0px, transparent 50%);
|
|
84
|
+
background-attachment: fixed;
|
|
85
|
+
color: var(--text-primary);
|
|
86
|
+
line-height: 1.5;
|
|
87
|
+
-webkit-font-smoothing: antialiased;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
/* Typography */
|
|
91
|
+
h1,
|
|
92
|
+
h2,
|
|
93
|
+
h3,
|
|
94
|
+
h4,
|
|
95
|
+
h5,
|
|
96
|
+
h6 {
|
|
97
|
+
font-family: 'Outfit', sans-serif;
|
|
98
|
+
margin: 0;
|
|
99
|
+
font-weight: 600;
|
|
100
|
+
letter-spacing: -0.025em;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
code,
|
|
104
|
+
pre {
|
|
105
|
+
font-family: 'JetBrains Mono', 'Fira Code', monospace;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
/* Layout */
|
|
109
|
+
.container {
|
|
110
|
+
max-width: 1280px;
|
|
111
|
+
margin: 0 auto;
|
|
112
|
+
padding: 32px 24px;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
/* Header */
|
|
116
|
+
.header {
|
|
117
|
+
display: flex;
|
|
118
|
+
flex-direction: column;
|
|
119
|
+
gap: 8px;
|
|
120
|
+
margin-bottom: 40px;
|
|
121
|
+
animation: slideDown 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.header-top {
|
|
125
|
+
display: flex;
|
|
126
|
+
justify-content: space-between;
|
|
127
|
+
align-items: center;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.title {
|
|
131
|
+
font-size: 2.5rem;
|
|
132
|
+
font-weight: 700;
|
|
133
|
+
background: linear-gradient(135deg, #fffbeb 0%, #fbbf24 100%);
|
|
134
|
+
-webkit-background-clip: text;
|
|
135
|
+
-webkit-text-fill-color: transparent;
|
|
136
|
+
filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.2));
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.subtitle {
|
|
140
|
+
color: var(--slate-400);
|
|
141
|
+
font-size: 1.1rem;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
/* Panels */
|
|
145
|
+
.panel {
|
|
146
|
+
background: rgba(255, 255, 255, 0.03);
|
|
147
|
+
backdrop-filter: blur(16px);
|
|
148
|
+
-webkit-backdrop-filter: blur(16px);
|
|
149
|
+
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
150
|
+
border-radius: 20px;
|
|
151
|
+
padding: 24px;
|
|
152
|
+
margin-bottom: 24px;
|
|
153
|
+
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
|
|
154
|
+
transition: all var(--transition-medium);
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.panel:hover {
|
|
158
|
+
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
|
|
159
|
+
border-color: rgba(251, 191, 36, 0.2);
|
|
160
|
+
background: rgba(255, 255, 255, 0.05);
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
/* Glassmorphism utility */
|
|
164
|
+
.glass-panel {
|
|
165
|
+
background: rgba(30, 41, 59, 0.4);
|
|
166
|
+
backdrop-filter: blur(20px);
|
|
167
|
+
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
/* Grid Layouts */
|
|
171
|
+
.grid {
|
|
172
|
+
display: grid;
|
|
173
|
+
gap: 20px;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.grid.filters {
|
|
177
|
+
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|
178
|
+
align-items: end;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
.grid.metrics {
|
|
182
|
+
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
/* Inputs */
|
|
186
|
+
.form-group {
|
|
187
|
+
display: flex;
|
|
188
|
+
flex-direction: column;
|
|
189
|
+
gap: 8px;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
label {
|
|
193
|
+
font-size: 0.875rem;
|
|
194
|
+
font-weight: 500;
|
|
195
|
+
color: var(--slate-400);
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
input,
|
|
199
|
+
select,
|
|
200
|
+
button {
|
|
201
|
+
font-family: inherit;
|
|
202
|
+
font-size: 0.95rem;
|
|
203
|
+
padding: 12px 16px;
|
|
204
|
+
border-radius: 12px;
|
|
205
|
+
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
206
|
+
background: rgba(0, 0, 0, 0.3);
|
|
207
|
+
color: var(--slate-100);
|
|
208
|
+
transition: all var(--transition-fast);
|
|
209
|
+
outline: none;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
input:focus,
|
|
213
|
+
select:focus {
|
|
214
|
+
border-color: var(--brand-500);
|
|
215
|
+
box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.3);
|
|
216
|
+
background: rgba(0, 0, 0, 0.5);
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
button.primary {
|
|
220
|
+
background: linear-gradient(135deg, var(--brand-600) 0%, var(--brand-700) 100%);
|
|
221
|
+
color: white;
|
|
222
|
+
border: none;
|
|
223
|
+
font-weight: 600;
|
|
224
|
+
cursor: pointer;
|
|
225
|
+
display: flex;
|
|
226
|
+
align-items: center;
|
|
227
|
+
justify-content: center;
|
|
228
|
+
gap: 8px;
|
|
229
|
+
box-shadow: 0 4px 6px rgba(217, 119, 6, 0.3);
|
|
230
|
+
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
button.primary:hover {
|
|
234
|
+
background: linear-gradient(135deg, var(--brand-500) 0%, var(--brand-600) 100%);
|
|
235
|
+
transform: translateY(-2px);
|
|
236
|
+
box-shadow: 0 6px 8px rgba(217, 119, 6, 0.4);
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
button.primary:active {
|
|
240
|
+
transform: translateY(0);
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
/* Metrics */
|
|
244
|
+
.metric-card {
|
|
245
|
+
background: rgba(30, 41, 59, 0.4);
|
|
246
|
+
border: 1px solid rgba(255, 255, 255, 0.05);
|
|
247
|
+
border-radius: 16px;
|
|
248
|
+
padding: 24px;
|
|
249
|
+
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
|
|
250
|
+
display: flex;
|
|
251
|
+
flex-direction: column;
|
|
252
|
+
gap: 12px;
|
|
253
|
+
position: relative;
|
|
254
|
+
overflow: hidden;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
.metric-card::after {
|
|
258
|
+
content: "";
|
|
259
|
+
position: absolute;
|
|
260
|
+
top: 0;
|
|
261
|
+
left: 0;
|
|
262
|
+
right: 0;
|
|
263
|
+
height: 100%;
|
|
264
|
+
background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
|
|
265
|
+
opacity: 0;
|
|
266
|
+
transition: opacity 0.4s;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
.metric-card:hover {
|
|
270
|
+
transform: translateY(-4px);
|
|
271
|
+
border-color: rgba(251, 191, 36, 0.3);
|
|
272
|
+
box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.5);
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
.metric-card:hover::after {
|
|
276
|
+
opacity: 1;
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
.metric-label {
|
|
280
|
+
font-size: 0.875rem;
|
|
281
|
+
color: var(--slate-400);
|
|
282
|
+
font-weight: 500;
|
|
283
|
+
text-transform: uppercase;
|
|
284
|
+
letter-spacing: 0.05em;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
.metric-value {
|
|
288
|
+
font-size: 2.25rem;
|
|
289
|
+
font-weight: 700;
|
|
290
|
+
color: var(--white);
|
|
291
|
+
font-family: 'Outfit', sans-serif;
|
|
292
|
+
letter-spacing: -0.02em;
|
|
293
|
+
background: linear-gradient(180deg, #fff 0%, #e2e8f0 100%);
|
|
294
|
+
-webkit-background-clip: text;
|
|
295
|
+
-webkit-text-fill-color: transparent;
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
/* Events List */
|
|
299
|
+
.event-list {
|
|
300
|
+
display: flex;
|
|
301
|
+
flex-direction: column;
|
|
302
|
+
gap: 16px;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
.event-row {
|
|
306
|
+
background: rgba(30, 41, 59, 0.4);
|
|
307
|
+
border: 1px solid rgba(255, 255, 255, 0.05);
|
|
308
|
+
border-radius: 16px;
|
|
309
|
+
overflow: hidden;
|
|
310
|
+
transition: all var(--transition-medium);
|
|
311
|
+
animation: slideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) backwards;
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
.event-row:hover {
|
|
315
|
+
border-color: rgba(251, 191, 36, 0.3);
|
|
316
|
+
box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.4);
|
|
317
|
+
background: rgba(30, 41, 59, 0.6);
|
|
318
|
+
transform: scale(1.005);
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
.event-summary {
|
|
322
|
+
padding: 20px 24px;
|
|
323
|
+
display: grid;
|
|
324
|
+
grid-template-columns: 80px 1fr auto;
|
|
325
|
+
gap: 20px;
|
|
326
|
+
align-items: center;
|
|
327
|
+
cursor: pointer;
|
|
328
|
+
user-select: none;
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
.event-main {
|
|
332
|
+
display: flex;
|
|
333
|
+
flex-direction: column;
|
|
334
|
+
gap: 6px;
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
.event-title {
|
|
338
|
+
font-weight: 600;
|
|
339
|
+
font-size: 1.05rem;
|
|
340
|
+
color: var(--slate-100);
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
.event-meta {
|
|
344
|
+
display: flex;
|
|
345
|
+
gap: 12px;
|
|
346
|
+
font-size: 0.875rem;
|
|
347
|
+
color: var(--slate-400);
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
.event-details {
|
|
351
|
+
background: rgba(0, 0, 0, 0.2);
|
|
352
|
+
padding: 24px;
|
|
353
|
+
border-top: 1px solid rgba(255, 255, 255, 0.05);
|
|
354
|
+
font-size: 0.9rem;
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
.detail-group {
|
|
358
|
+
margin-bottom: 16px;
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
.detail-label {
|
|
362
|
+
font-size: 0.7rem;
|
|
363
|
+
text-transform: uppercase;
|
|
364
|
+
letter-spacing: 0.1em;
|
|
365
|
+
color: var(--brand-300);
|
|
366
|
+
font-weight: 700;
|
|
367
|
+
margin-bottom: 8px;
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
/* Badges */
|
|
371
|
+
.badge {
|
|
372
|
+
display: inline-flex;
|
|
373
|
+
align-items: center;
|
|
374
|
+
justify-content: center;
|
|
375
|
+
padding: 6px 12px;
|
|
376
|
+
border-radius: 9999px;
|
|
377
|
+
font-size: 0.75rem;
|
|
378
|
+
font-weight: 700;
|
|
379
|
+
text-transform: uppercase;
|
|
380
|
+
letter-spacing: 0.05em;
|
|
381
|
+
backdrop-filter: blur(4px);
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
.badge.critical {
|
|
385
|
+
background: var(--critical-bg);
|
|
386
|
+
color: var(--critical-text);
|
|
387
|
+
border: 1px solid var(--critical-border);
|
|
388
|
+
box-shadow: 0 0 12px rgba(153, 27, 27, 0.2);
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
.badge.high {
|
|
392
|
+
background: var(--high-bg);
|
|
393
|
+
color: var(--high-text);
|
|
394
|
+
border: 1px solid var(--high-border);
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
.badge.medium {
|
|
398
|
+
background: var(--medium-bg);
|
|
399
|
+
color: var(--medium-text);
|
|
400
|
+
border: 1px solid var(--medium-border);
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
.badge.low {
|
|
404
|
+
background: var(--low-bg);
|
|
405
|
+
color: var(--low-text);
|
|
406
|
+
border: 1px solid var(--low-border);
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
/* Utilities */
|
|
410
|
+
.text-brand {
|
|
411
|
+
color: var(--brand-400);
|
|
412
|
+
filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.3));
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
.animate-pulse {
|
|
416
|
+
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
/* Code Block */
|
|
420
|
+
.code-block {
|
|
421
|
+
background: #000;
|
|
422
|
+
color: #fbbf24;
|
|
423
|
+
padding: 16px;
|
|
424
|
+
border-radius: 12px;
|
|
425
|
+
font-size: 0.85rem;
|
|
426
|
+
overflow-x: auto;
|
|
427
|
+
margin: 0;
|
|
428
|
+
border: 1px solid rgba(251, 191, 36, 0.1);
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
/* Fallback/Empty States */
|
|
432
|
+
.empty-state {
|
|
433
|
+
text-align: center;
|
|
434
|
+
padding: 64px 0;
|
|
435
|
+
color: var(--text-secondary);
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
/* Loading Skeleton */
|
|
439
|
+
.skeleton {
|
|
440
|
+
background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.05) 75%);
|
|
441
|
+
background-size: 200% 100%;
|
|
442
|
+
animation: shimmer 1.5s infinite;
|
|
443
|
+
border-radius: 6px;
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
/* Animations Keyframes */
|
|
447
|
+
@keyframes slideDown {
|
|
448
|
+
from {
|
|
449
|
+
opacity: 0;
|
|
450
|
+
transform: translateY(-20px);
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
to {
|
|
454
|
+
opacity: 1;
|
|
455
|
+
transform: translateY(0);
|
|
456
|
+
}
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
@keyframes slideUp {
|
|
460
|
+
from {
|
|
461
|
+
opacity: 0;
|
|
462
|
+
transform: translateY(20px);
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
to {
|
|
466
|
+
opacity: 1;
|
|
467
|
+
transform: translateY(0);
|
|
468
|
+
}
|
|
469
|
+
}
|
|
470
|
+
|
|
471
|
+
@keyframes pulse {
|
|
472
|
+
|
|
473
|
+
0%,
|
|
474
|
+
100% {
|
|
475
|
+
opacity: 1;
|
|
476
|
+
}
|
|
477
|
+
|
|
478
|
+
50% {
|
|
479
|
+
opacity: .5;
|
|
480
|
+
}
|
|
481
|
+
}
|
|
482
|
+
|
|
483
|
+
@keyframes shimmer {
|
|
484
|
+
0% {
|
|
485
|
+
background-position: 200% 0;
|
|
486
|
+
}
|
|
487
|
+
|
|
488
|
+
100% {
|
|
489
|
+
background-position: -200% 0;
|
|
490
|
+
}
|
|
491
|
+
}
|
|
492
|
+
|
|
493
|
+
/* Scrollbar */
|
|
494
|
+
::-webkit-scrollbar {
|
|
495
|
+
width: 10px;
|
|
496
|
+
height: 10px;
|
|
497
|
+
}
|
|
498
|
+
|
|
499
|
+
::-webkit-scrollbar-track {
|
|
500
|
+
background: rgba(0, 0, 0, 0.1);
|
|
501
|
+
}
|
|
502
|
+
|
|
503
|
+
::-webkit-scrollbar-thumb {
|
|
504
|
+
background: var(--slate-700);
|
|
505
|
+
border-radius: 5px;
|
|
506
|
+
border: 2px solid transparent;
|
|
507
|
+
background-clip: content-box;
|
|
508
|
+
}
|
|
509
|
+
|
|
510
|
+
::-webkit-scrollbar-thumb:hover {
|
|
511
|
+
background-color: var(--slate-600);
|
|
512
|
+
}
|