|
284 | 284 | /*** END -- DOCS HOMEPAGE STYLING ***/ |
285 | 285 |
|
286 | 286 | /*** START -- SDKS HOMEPAGE STYLING ***/ |
287 | | - .sdks-homepage { |
288 | | - position: relative; |
| 287 | +.sdks-homepage { |
| 288 | + position: relative; |
289 | 289 |
|
290 | | - .fern-card { |
291 | | - text-decoration: none !important; |
292 | | - } |
| 290 | + .fern-card { |
| 291 | + text-decoration: none !important; |
| 292 | + } |
293 | 293 |
|
294 | | - .dashed-pattern-left { |
295 | | - position: absolute; |
296 | | - left: -4rem; |
297 | | - top: -8.5rem; |
298 | | - height: calc(100% + 26rem); |
299 | | - width: 1rem; |
300 | | - opacity: 1; |
301 | | - pointer-events: none; |
302 | | - border-right: 1px solid var(--grayscale-5); |
303 | | - mask: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,1) 10%, rgba(0,0,0,1) 90%, rgba(0,0,0,0 ) 100%); |
304 | | - -webkit-mask: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,1) 10%, rgba(0,0,0,1) 90%, rgba(0,0,0,0) 100%); |
| 294 | + .dashed-pattern-left { |
| 295 | + position: absolute; |
| 296 | + left: -4rem; |
| 297 | + top: -8.5rem; |
| 298 | + height: calc(100% + 26rem); |
| 299 | + width: 1rem; |
| 300 | + opacity: 1; |
| 301 | + pointer-events: none; |
| 302 | + border-right: 1px solid var(--grayscale-5); |
| 303 | + mask: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,1) 10%, rgba(0,0,0,1) 90%, rgba(0,0,0,0 ) 100%); |
| 304 | + -webkit-mask: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,1) 10%, rgba(0,0,0,1) 90%, rgba(0,0,0,0) 100%); |
| 305 | + } |
| 306 | + |
| 307 | + .dashed-pattern-right { |
| 308 | + position: absolute; |
| 309 | + right: -4rem; |
| 310 | + top: -8.5rem; |
| 311 | + height: calc(100% + 26rem); |
| 312 | + width: 1rem; |
| 313 | + opacity: 1; |
| 314 | + pointer-events: none; |
| 315 | + border-left: 1px solid var(--grayscale-5); |
| 316 | + mask: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,1) 10%, rgba(0,0,0,1) 90%, rgba(0,0,0,0) 100%); |
| 317 | + -webkit-mask: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,1) 10%, rgba(0,0,0,1) 90%, rgba(0,0,0,0) 100%); |
| 318 | + } |
| 319 | + |
| 320 | + .fern-card { |
| 321 | + border: none !important; |
| 322 | + padding: 0 !important; |
| 323 | + box-shadow: none !important; |
| 324 | + background-color: transparent !important; |
| 325 | + |
| 326 | + .external-link-icon { |
| 327 | + display: none !important; |
305 | 328 | } |
306 | 329 |
|
307 | | - .dashed-pattern-right { |
308 | | - position: absolute; |
309 | | - right: -4rem; |
310 | | - top: -8.5rem; |
311 | | - height: calc(100% + 26rem); |
312 | | - width: 1rem; |
313 | | - opacity: 1; |
314 | | - pointer-events: none; |
315 | | - border-left: 1px solid var(--grayscale-5); |
316 | | - mask: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,1) 10%, rgba(0,0,0,1) 90%, rgba(0,0,0,0) 100%); |
317 | | - -webkit-mask: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,1) 10%, rgba(0,0,0,1) 90%, rgba(0,0,0,0) 100%); |
318 | | - } |
319 | | - |
320 | | - .fern-card { |
321 | | - border: none !important; |
322 | | - padding: 0 !important; |
323 | | - box-shadow: none !important; |
324 | | - background-color: transparent !important; |
325 | | - |
326 | | - .external-link-icon { |
327 | | - display: none !important; |
328 | | - } |
| 330 | + .card-title { |
| 331 | + display: flex; |
| 332 | + gap: 0.25rem; |
| 333 | + align-items: center; |
| 334 | + } |
329 | 335 |
|
330 | | - .card-title { |
331 | | - display: flex; |
332 | | - gap: 0.25rem; |
333 | | - align-items: center; |
334 | | - } |
| 336 | + img { |
| 337 | + transition: transform 0.15s ease-in-out; |
| 338 | + } |
335 | 339 |
|
| 340 | + .arrow-right { |
| 341 | + height: 1rem; |
| 342 | + opacity: 0; |
| 343 | + transition: opacity 0.15s ease-in-out, transform 0.15s ease-in-out; |
| 344 | + transform: translateX(0px); |
| 345 | + } |
| 346 | + |
| 347 | + &:hover { |
336 | 348 | img { |
337 | | - transition: transform 0.15s ease-in-out; |
| 349 | + transform: scale(1.01); |
338 | 350 | } |
339 | 351 |
|
340 | 352 | .arrow-right { |
341 | | - height: 1rem; |
342 | | - opacity: 0; |
343 | | - transition: opacity 0.15s ease-in-out, transform 0.15s ease-in-out; |
344 | | - transform: translateX(0px); |
345 | | - } |
346 | | - |
347 | | - &:hover { |
348 | | - img { |
349 | | - transform: scale(1.01); |
350 | | - } |
351 | | - |
352 | | - .arrow-right { |
353 | | - opacity: 1; |
354 | | - transform: translateX(2px); |
355 | | - } |
| 353 | + opacity: 1; |
| 354 | + transform: translateX(2px); |
356 | 355 | } |
357 | 356 | } |
358 | 357 | } |
| 358 | +} |
359 | 359 | /*** START -- SDKS HOMEPAGE STYLING ***/ |
360 | 360 |
|
361 | 361 | /*** START -- LANDING PAGE STYLING ***/ |
|
429 | 429 |
|
430 | 430 | .dashed-pattern-left { |
431 | 431 | position: absolute; |
432 | | - left: -24px; |
| 432 | + left: -1rem; |
433 | 433 | top: 0; |
434 | 434 | height: 100%; |
435 | 435 | width: 1rem; |
|
442 | 442 |
|
443 | 443 | .dashed-pattern-right { |
444 | 444 | position: absolute; |
445 | | - right: -24px; |
| 445 | + right: -1rem; |
446 | 446 | top: 0; |
447 | 447 | height: 100%; |
448 | 448 | width: 1rem; |
449 | 449 | opacity: 1; |
450 | 450 | pointer-events: none; |
451 | | - border-right: 1px solid var(--grayscale-5); |
| 451 | + border-left: 1px solid var(--grayscale-5); |
452 | 452 | mask: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,1) 10%, rgba(0,0,0,1) 90%, rgba(0,0,0,0) 100%); |
453 | 453 | -webkit-mask: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,1) 10%, rgba(0,0,0,1) 90%, rgba(0,0,0,0) 100%); |
454 | 454 | } |
|
0 commit comments