-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcarousel.css
More file actions
344 lines (320 loc) · 11.3 KB
/
Copy pathcarousel.css
File metadata and controls
344 lines (320 loc) · 11.3 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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
/* ========================================
WebNotes — Carousel Styles
Append this to the end of index.css
======================================== */
/* ── Carousel Outer Wrapper ── */
.carousel-outer {
display: flex;
align-items: center;
gap: 12px;
padding: 16px 0 32px;
position: relative;
}
/* ── Carousel Stage (overflow hidden window) ── */
.carousel-stage {
flex: 1;
overflow: hidden;
padding: 24px 0; /* vertical room for scale effect */
}
/* ── Carousel Track (the 3-card row) ── */
.carousel-track {
display: flex;
align-items: center;
justify-content: center;
gap: 20px;
will-change: transform, opacity;
}
/* Slide-out to the left (going forward / next) */
.carousel-track.anim-out {
animation: c-slide-out 280ms cubic-bezier(0.4, 0, 1, 1) both;
}
/* Slide-out to the right (going backward / prev) */
.carousel-track.anim-out-rev {
animation: c-slide-out-rev 280ms cubic-bezier(0.4, 0, 1, 1) both;
}
/* Slide-in from the right (after forward rotation) */
.carousel-track.anim-in {
animation: c-slide-in 300ms cubic-bezier(0, 0, 0.2, 1) both;
}
/* Slide-in from the left (after backward rotation) */
.carousel-track.anim-in-rev {
animation: c-slide-in-rev 300ms cubic-bezier(0, 0, 0.2, 1) both;
}
@keyframes c-slide-out {
0% { transform: translateX(0); opacity: 1; }
100% { transform: translateX(-80px); opacity: 0; }
}
@keyframes c-slide-out-rev {
0% { transform: translateX(0); opacity: 1; }
100% { transform: translateX(80px); opacity: 0; }
}
@keyframes c-slide-in {
0% { transform: translateX(80px); opacity: 0; }
100% { transform: translateX(0); opacity: 1; }
}
@keyframes c-slide-in-rev {
0% { transform: translateX(-80px); opacity: 0; }
100% { transform: translateX(0); opacity: 1; }
}
/* ── Carousel Cards — position variants ── */
/* The note-card class already provides background, border, radius, etc. */
/* We only override size, scale, opacity, and pointer-events here. */
.carousel-card {
flex-shrink: 0;
cursor: pointer;
transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
opacity 0.3s ease,
box-shadow 0.3s ease;
user-select: none;
-webkit-user-select: none;
}
/* Center card — hero position */
.carousel-card.carousel-center {
width: 380px;
max-width: 380px;
transform: scale(1);
opacity: 1;
z-index: 2;
box-shadow: 0 12px 50px rgba(108, 92, 231, 0.25), var(--shadow-lg);
}
.carousel-card.carousel-center:hover {
transform: scale(1.03) translateY(-4px);
box-shadow: 0 20px 60px rgba(108, 92, 231, 0.35), var(--shadow-lg);
}
/* Side cards — secondary, slightly shrunk and dimmed */
.carousel-card.carousel-left,
.carousel-card.carousel-right {
width: 300px;
max-width: 300px;
transform: scale(0.88);
opacity: 0.52;
z-index: 1;
}
.carousel-card.carousel-left:hover,
.carousel-card.carousel-right:hover {
opacity: 0.78;
transform: scale(0.91);
}
/* ── Arrow Buttons ── */
.carousel-btn {
flex-shrink: 0;
width: 48px;
height: 48px;
border-radius: 50%;
border: 1px solid var(--border-accent);
background: rgba(22, 22, 35, 0.85);
color: var(--text-primary);
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
backdrop-filter: blur(10px);
z-index: 5;
}
.carousel-btn:hover {
background: var(--accent-primary);
border-color: var(--accent-primary);
transform: scale(1.12);
box-shadow: 0 0 20px rgba(108, 92, 231, 0.4);
}
.carousel-btn:active {
transform: scale(0.97);
}
/* ── Dot indicators ── */
.carousel-dots {
display: flex;
gap: 8px;
justify-content: center;
padding-bottom: 8px;
flex-wrap: wrap;
}
.carousel-dot {
width: 8px;
height: 8px;
border-radius: var(--radius-full);
background: var(--bg-glass-hover);
border: 1px solid var(--border-accent);
cursor: pointer;
transition: all 0.25s ease;
}
.carousel-dot.active {
width: 28px;
background: var(--accent-primary);
border-color: var(--accent-primary);
box-shadow: 0 0 12px rgba(108, 92, 231, 0.4);
}
.carousel-dot:hover:not(.active) {
background: rgba(108, 92, 231, 0.4);
border-color: var(--accent-primary);
}
/* ── Empty state for carousel ── */
#carousel-empty {
text-align: center;
padding: 60px 0;
}
/* ── Loading spinner for carousel ── */
.carousel-loading {
display: flex;
justify-content: center;
align-items: center;
padding: 80px 0;
gap: 16px;
color: var(--text-muted);
font-size: 0.95rem;
}
/* ── Mobile responsiveness ── */
@media (max-width: 900px) {
.carousel-card.carousel-center {
width: 320px;
max-width: 320px;
}
.carousel-card.carousel-left,
.carousel-card.carousel-right {
width: 210px;
max-width: 210px;
transform: scale(0.84);
opacity: 0.42;
}
}
@media (max-width: 600px) {
.carousel-outer {
gap: 6px;
}
.carousel-stage {
padding: 16px 0;
}
.carousel-card.carousel-center {
width: calc(100vw - 120px);
max-width: 300px;
}
.carousel-card.carousel-left,
.carousel-card.carousel-right {
width: 80px;
max-width: 80px;
transform: scale(0.78);
opacity: 0.3;
}
/* On very small screens, hide side card text to reduce clutter */
.carousel-card.carousel-left .note-card-body,
.carousel-card.carousel-right .note-card-body {
display: none;
}
.carousel-card.carousel-left .note-card-banner,
.carousel-card.carousel-right .note-card-banner {
min-height: 80px;
border-radius: var(--radius-md);
}
.carousel-btn {
width: 36px;
height: 36px;
}
}
/* ── Typing cursor ── */
.typing-cursor {
display: inline-block;
width: 2px;
height: 1.1em;
background: var(--accent-primary-light);
margin-left: 2px;
vertical-align: text-bottom;
animation: blink 1s step-end infinite;
}
@keyframes blink {
0%, 100% { opacity: 1; }
50% { opacity: 0; }
}
/* ── Open Note pill — FULL COVERAGE (all card classes) ── */
/* 1. Base pill */
.note-card-open-btn {
display: inline-flex;
align-items: center;
gap: 5px;
padding: 5px 13px;
border-radius: 20px;
border: 1px solid var(--border-accent);
background: rgba(108, 92, 231, 0.12);
color: var(--accent-primary-light);
font-size: 0.8rem;
font-weight: 500;
white-space: nowrap;
cursor: pointer;
position: relative;
overflow: hidden;
transition:
background 0.25s ease,
border-color 0.25s ease,
color 0.25s ease,
box-shadow 0.25s ease,
transform 0.2s ease;
}
/* 2. Shimmer sweep — always on, all cards */
.note-card-open-btn::before {
content: '';
position: absolute;
top: 0; left: -80%;
width: 55%; height: 100%;
background: linear-gradient(
120deg,
transparent 0%,
rgba(255,255,255,0.2) 50%,
transparent 100%
);
animation: open-btn-shimmer 2.8s ease-in-out infinite;
pointer-events: none;
}
@keyframes open-btn-shimmer {
0% { left: -80%; opacity: 0; }
15% { opacity: 1; }
55% { left: 130%; opacity: 1; }
56%, 100% { left: 130%; opacity: 0; }
}
/* 3. Arrow bounce — always on */
.note-card-open-btn span {
display: inline-block;
animation: open-btn-arrow 1.6s ease-in-out infinite;
}
@keyframes open-btn-arrow {
0%, 100% { transform: translateX(0); }
50% { transform: translateX(4px); }
}
/* 4. Hover base — covers ALL card types */
.note-card:hover .note-card-open-btn {
background: rgba(108, 92, 231, 0.32);
border-color: var(--accent-primary);
box-shadow: 0 0 16px rgba(108,92,231,0.45), 0 2px 8px rgba(0,0,0,0.3);
transform: translateY(-2px);
color: #fff;
}
.note-card:hover .note-card-open-btn span {
animation: open-btn-arrow-fast 0.45s ease-in-out infinite;
}
@keyframes open-btn-arrow-fast {
0%, 100% { transform: translateX(0); }
50% { transform: translateX(5px); }
}
.note-card-open-btn:active {
transform: translateY(0) scale(0.95);
box-shadow: none;
}
/* 5. Per-language accent on hover — every card class */
.note-card.python:hover .note-card-open-btn { background: rgba(48,105,152,0.35); border-color: #4b8bbe; box-shadow: 0 0 16px rgba(48,105,152,0.5); color: #7ec8e3; }
.note-card.java:hover .note-card-open-btn { background: rgba(248,152,32,0.28); border-color: #f89820; box-shadow: 0 0 16px rgba(248,152,32,0.45); color: #f89820; }
.note-card.c-lang:hover .note-card-open-btn { background: rgba(0,89,156,0.35); border-color: #00599C; box-shadow: 0 0 16px rgba(0,89,156,0.5); color: #659AD2; }
.note-card.js-lang:hover .note-card-open-btn { background: rgba(247,223,30,0.2); border-color: #F7DF1E; box-shadow: 0 0 16px rgba(247,223,30,0.35); color: #F7DF1E; }
.note-card.ts-lang:hover .note-card-open-btn { background: rgba(49,120,198,0.3); border-color: #3178C6; box-shadow: 0 0 16px rgba(49,120,198,0.45); color: #7ab4e8; }
.note-card.rust-lang:hover .note-card-open-btn { background: rgba(206,74,46,0.3); border-color: #CE4A2E; box-shadow: 0 0 16px rgba(206,74,46,0.45); color: #f4a58a; }
.note-card.go-lang:hover .note-card-open-btn { background: rgba(0,174,216,0.28); border-color: #00AED8; box-shadow: 0 0 16px rgba(0,174,216,0.4); color: #00AED8; }
.note-card.cpp-lang:hover .note-card-open-btn { background: rgba(0,68,130,0.35); border-color: #004482; box-shadow: 0 0 16px rgba(0,68,130,0.5); color: #659AD2; }
.note-card.kotlin-lang:hover .note-card-open-btn{ background: rgba(127,82,255,0.3); border-color: #7F52FF; box-shadow: 0 0 16px rgba(127,82,255,0.45); color: #b49dff; }
.note-card.swift-lang:hover .note-card-open-btn { background: rgba(240,81,56,0.28); border-color: #F05138; box-shadow: 0 0 16px rgba(240,81,56,0.4); color: #f4a58a; }
.note-card.ruby-lang:hover .note-card-open-btn { background: rgba(204,52,45,0.28); border-color: #CC342D; box-shadow: 0 0 16px rgba(204,52,45,0.4); color: #ff8a85; }
.note-card.php-lang:hover .note-card-open-btn { background: rgba(119,123,180,0.3); border-color: #777BB4; box-shadow: 0 0 16px rgba(119,123,180,0.4); color: #adb2d4; }
.note-card.sql-lang:hover .note-card-open-btn { background: rgba(51,103,145,0.32); border-color: #336791; box-shadow: 0 0 16px rgba(51,103,145,0.45); color: #74b9ff; }
.note-card.shell-lang:hover .note-card-open-btn { background: rgba(45,45,45,0.5); border-color: #4EAA25; box-shadow: 0 0 16px rgba(78,170,37,0.4); color: #4EAA25; }
.note-card.web-lang:hover .note-card-open-btn { background: rgba(227,76,38,0.22); border-color: #E34C26; box-shadow: 0 0 16px rgba(38,77,228,0.4); color: #74b9ff; }
.note-card.ml-lang:hover .note-card-open-btn { background: rgba(255,111,97,0.22); border-color: #ff6f61; box-shadow: 0 0 16px rgba(255,111,97,0.4); color: #ffb3ae; }
.note-card.devops-lang:hover .note-card-open-btn{ background: rgba(0,150,215,0.25); border-color: #0096d7; box-shadow: 0 0 16px rgba(0,150,215,0.4); color: #74d0ff; }
.note-card.dart-lang:hover .note-card-open-btn { background: rgba(0,180,216,0.25); border-color: #00B4D8; box-shadow: 0 0 16px rgba(0,180,216,0.4); color: #00B4D8; }
.note-card.csharp-lang:hover .note-card-open-btn{ background: rgba(104,33,122,0.3); border-color: #68217a; box-shadow: 0 0 16px rgba(104,33,122,0.45); color: #d6a8ff; }
.note-card.uploaded:hover .note-card-open-btn { background: rgba(108,92,231,0.35); border-color: #6c5ce7; box-shadow: 0 0 16px rgba(108,92,231,0.5); color: #a29bfe; }