-
Notifications
You must be signed in to change notification settings - Fork 1
/
lib.ftd
4142 lines (2280 loc) · 69.6 KB
/
lib.ftd
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
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- import: fifthtry.github.io/fastn-ui/assets
-- import: fastn
-- import: fastn/processors as pr
-- import: fastn-cs
-- import: typo
-- import: fifthtry.github.io/fastn-ui/typography as tf
-- import: fifthtry.github.io/bling/detail as detail
-- import: fifthtry.github.io/fastn-ui/header as h
-- import: fifthtry.github.io/fastn-ui/header-data as toc
-- import: fifthtry.github.io/fastn-ui/component-lib/lib4 as lib4
-- import: fifthtry.github.io/fastn-ui/component-lib/lib5 as lib5
-- import: fifthtry.github.io/fastn-ui/component-lib/lib2 as lib2
-- import: fifthtry.github.io/fastn-ui/component-lib/lib3 as lib3
-- integer $current-slide: 1
-- integer $current-tab: 1
-- string docs-site-link: https://fifthtry.github.io/ds-theme-1/
-- string site-name: fastn
-- optional ftd.image-src site-logo: NULL
-- string login-button-link: index.html
-- string site-url: index.html
-- string $selected-item: System
-- integer $width: 1160
-- integer $footer-width: 1340
-- pr.sitemap-data footer-toc:
$processor$: pr.full-sitemap
-- pr.toc-item list sections:
-- pr.toc-item list sub-sections:
-- pr.toc-item list toc:
-- pr.sitemap-data sitemap:
$processor$: pr.full-sitemap
-- integer divideToTwo(a):
integer a:
- ( a / 2 ) + 50
-- component page:
optional caption title:
optional body body:
pr.toc-item list sections: $sitemap.sections
pr.toc-item list sub-sections: $sitemap.subsections
optional pr.toc-item current-section: $sitemap.current-section
optional pr.toc-item current-subsection: $sitemap.current-subsection
optional pr.toc-item current-page: $sitemap.current-page
pr.toc-item list toc: $sitemap.toc
pr.toc-item list footer-toc: $footer-toc.sections
optional ftd.image-src logo: $site-logo
optional string sitename: $site-name
string login-button: Get Started
integer width: $width
children wrapper:
boolean $show-breadcrum: false
ftd.color-scheme colors: $fastn-cs.main
ftd.type-data types: $typo.types
boolean $show-mobile-menu: false
optional string docs-link: $docs-site-link
optional string login-button-link: $login-button-link
optional string site-url: $site-url
ftd.color bg-color: $inherited.colors.background.base
-- ftd.column:
width: fill-container
align-self: center
background.solid: $page.bg-color
-- ftd.column:
width: fill-container
min-width.fixed.px if { ftd.device != "mobile" }: $page.width
overflow-x: auto
-- h.header-fastn: $page.title
logo: $page.logo
sitename: $page.sitename
login-button: $page.login-button
sections: $page.sections
sub-sections: $page.sub-sections
current-section: $page.current-section
current-subsection: $page.current-subsection
current-page: $page.current-page
toc: $page.toc
$show-mobile-menu: $page.show-mobile-menu
width: $page.width
show-breadcrum: $page.show-breadcrum
login-button-link: $page.login-button-link
site-url: $page.site-url
-- ftd.column:
width: fill-container
align-content: right
align-content if { ftd.device == "mobile" }: left
padding-horizontal.px if { ftd.device == "mobile" }: 16
max-width.fixed.px: $width
align-self: center
padding-top.px: 12
padding-bottom.px: 6
-- ftd.row:
if: { page.show-breadcrum }
width: fill-container
spacing.fixed.px: 28
padding-bottom.px: 27
wrap: true
-- subsections-links: $obj.title
$loop$: $page.sections as $obj
item: $obj.children
url: $obj.url
is-active: $obj.is-active
-- end: ftd.row
-- ftd.row:
align-self if { page.title == NULL }: end
align-content: right
width: fill-container
-- ftd.text: $page.title
if: { page.title != NULL }
role: $inherited.types.heading-large
color: $inherited.colors.text
width: fill-container
-- ftd.row:
align-self: end
align-self if { page.title != NULL }: center
padding-horizontal.px: 10
padding-vertical.px: 10
border-color: $inherited.colors.border
border-width.px: 1
border-radius.px: 70
spacing.fixed.px: 12
background.solid: $inherited.colors.cta-primary.base
link: $page.docs-link
-- ftd.image:
src: $assets.files.static.doc-cta-icon-mobile.svg
width: auto
height: auto
align-self: center
-- ftd.text: Docs
role: $inherited.types.button-small
color: $inherited.colors.text.dark
-- end: ftd.row
-- end: ftd.row
-- end: ftd.column
-- ftd.column:
width: fill-container
max-width.fixed.px: $page.width
align-self: center
min-height.fixed.calc if { page.body != NULL }: 100vh
-- ftd.text:
if: { page.body != NULL }
role: $inherited.types.copy-regular
color: $inherited.colors.text
margin-top.px: 24
margin-bottom.px: 24
$page.body
-- end: ftd.column
-- ftd.column:
width: fill-container
align-self if { page.width != NULL }: center
children: $page.wrapper
-- end: ftd.column
-- end: ftd.column
-- end: ftd.column
-- end: page
-- component cta-button:
caption title:
optional string role:
string link:
boolean medium: false
boolean show-arrow: false
optional integer width:
boolean align-center: false
-- lib5.cta-button: $cta-button.title
role: $cta-button.role
link: $cta-button.link
medium: $cta-button.medium
show-arrow: $cta-button.show-arrow
width: $cta-button.width
align-center: $cta-button.align-center
-- end: cta-button
-- component fill-button:
caption title:
optional string role:
string link:
boolean show-plus: false
boolean show-tick: false
boolean align-center: false
-- lib5.fill-button: $fill-button.title
role: $fill-button.role
link: $fill-button.link
show-plus: $fill-button.show-plus
show-tick: $fill-button.show-tick
align-center: $fill-button.align-center
-- end: fill-button
-- component outline-button:
caption title:
optional string role:
string link:
boolean show-plus: false
boolean show-tick: false
boolean align-center: false
boolean text-btn: false
-- lib5.outline-button: $outline-button.title
role: $outline-button.role
link: $outline-button.link
show-plus: $outline-button.show-plus
show-tick: $outline-button.show-tick
align-center: $outline-button.align-center
text-btn: $outline-button.text-btn
-- end: outline-button
-- component menu-links:
caption title:
string link:
optional ftd.image-src icon:
boolean is-active: false
boolean $mouse-in: false
boolean $show-menu: false
integer width:
optional integer idx:
$toc.header-item list sub-sections:
optional string parent-id:
-- ftd.column:
width: fill-container
$on-mouse-enter$: $ftd.set-bool( $a = $menu-links.show-menu, v = true )
$on-mouse-leave$: $ftd.set-bool( $a = $menu-links.show-menu, v = false )
-- ftd.column:
-- ftd.text: $menu-links.title
role: $inherited.types.button-large
link: $menu-links.link
color: $inherited.colors.cta-primary.text
color if { $menu-links.is-active }: $inherited.colors.cta-primary.base
color if { $menu-links.mouse-in }: $inherited.colors.cta-primary.base
color if { !$menu-links.mouse-in }: $inherited.colors.text
$on-mouse-enter$: $ftd.set-bool( $a = $menu-links.mouse-in, v = true )
$on-mouse-leave$: $ftd.set-bool( $a = $menu-links.mouse-in, v = false )
white-space: nowrap
-- ftd.column:
if: { $menu-links.show-menu }
anchor: parent
top.px: 18
left.calc: 50% -30px
z-index: 0
-- ftd.image:
src: $assets.files.static.header.polygon.svg
width: fill-container
height: auto
-- end: ftd.column
-- end: ftd.column
-- ftd.column:
if: { $menu-links.show-menu }
width: fill-container
max-width.fixed.px: $menu-links.width
anchor.id: $menu-links.parent-id
z-index: 999
top.px: 94
left.px: 0
$on-click-outside$: $ftd.set-bool( $a = $menu-links.show-menu, v = false )
-- ftd.column:
width: fill-container
background.solid: $inherited.colors.custom.five
padding-vertical.px: 42
padding-horizontal.px: 42
border-radius.px: 12
-- ftd.column:
width.fixed.percent: 50
height: fill-container
z-index: 0
background.solid: $inherited.colors.background.step-1
anchor: parent
right.px: 0
top.px: 0
border-top-right-radius.px: 12
border-bottom-right-radius.px: 12
-- end: ftd.column
-- ftd.row:
width: fill-container
spacing.fixed.px: 60
z-index: 111
-- ftd.column:
width.fixed.px: 240
-- ftd.column:
-- ftd.text: $menu-links.title
link: $menu-links.link
role: $inherited.types.heading-small
color: $inherited.colors.text.dark
-- ftd.text:
role: $inherited.types.copy-regular
color: $inherited.colors.text-strong.dark
margin-top.px: 12
width: fill-container
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua.
-- ftd.image:
if: { menu-links.icon != NULL }
src: $menu-links.icon
width: auto
height: auto
margin-top.px: 40
-- end: ftd.column
-- end: ftd.column
-- ftd.column:
width: fill-container
spacing.fixed.px: 12
-- loop-section-card: $obj.title
if: { !ftd.is_empty( menu-links.sub-sections ) }
$loop$: $menu-links.sub-sections as $obj
link: $obj.url
is-active: $obj.is-active
toc: $obj.children
parent-id: menu-items
icon: $obj.font-icon
is-heading: $obj.is-heading
-- end: ftd.column
-- end: ftd.row
-- end: ftd.column
-- end: ftd.column
-- end: ftd.column
-- end: menu-links
-- component loop-section-card:
caption title:
boolean $mouse-in: false
$toc.header-item list toc:
boolean is-active: false
string link:
optional ftd.image-src icon:
boolean $show-sub-menu: false
string parent-id:
boolean is-heading: false
-- ftd.column:
width: fill-container
-- ftd.row:
width: fill-container
spacing.fixed.px: 60
-- ftd.column:
width.fixed.px: 284
align-self: start
-- ftd.column:
background.solid if { loop-section-card.mouse-in }: $inherited.colors.custom.four.dark
background.solid if { loop-section-card.is-active }: $inherited.colors.custom.four.dark
padding-vertical.px: 12
padding-horizontal.px: 24
border-color: $inherited.colors.custom.five
border-color if { loop-section-card.mouse-in || loop-section-card.is-active }: $inherited.colors.border-strong
border-width.px: 1
border-radius.px: 5
$on-mouse-enter$: $ftd.set-bool( $a = $loop-section-card.mouse-in, v = true )
$on-mouse-leave$: $ftd.set-bool( $a = $loop-section-card.mouse-in, v = false )
spacing.fixed.px: 12
max-width.fixed.px: 234
cursor: default
$on-click$: $ftd.set-bool( $a = $loop-section-card.show-sub-menu, v = true )
$on-click-outside$: $ftd.set-bool( $a = $loop-section-card.show-sub-menu, v = false )
-- ftd.row:
width: fill-container
spacing.fixed.px: 12
align-self: center
-- ftd.image:
if: { loop-section-card.icon != NULL }
src: $loop-section-card.icon
width: auto
height: auto
align-self: center
-- ftd.text: $loop-section-card.title
link: $loop-section-card.link
role: $inherited.types.copy-small
color: $inherited.colors.text.dark
white-space: nowrap
align-self: center
-- ftd.image:
src: $assets.files.static.header.sub-section-right-arrow.svg
width: auto
height: auto
align-self: center
margin-left.px: 4
-- end: ftd.row
-- ftd.text:
text: Lorem ipsum dolor sit amet, consectetur adipiscing elit.
role: $inherited.types.fine-print
color: $inherited.colors.text-strong.dark
-- end: ftd.column
-- end: ftd.column
-- ftd.column:
width.fixed.percent: 51
min-height.fixed.px: 500
anchor.id: $loop-section-card.parent-id
right.px: 0
top.px: 0
-- ftd.column:
width: fill-container
if: { loop-section-card.show-sub-menu }
align-content: center
margin-left.px: 38
margin-top.px: 40
-- toc-items:
if: { !ftd.is_empty( loop-section-card.toc ) }
toc: $loop-section-card.toc
is-heading: $loop-section-card.is-heading
-- end: ftd.column
-- end: ftd.column
-- end: ftd.row
-- end: ftd.column
-- end: loop-section-card
-- component hero-section:
caption title:
optional ftd.image-src image:
optional string cta-left-text:
optional string cta-right-text:
optional string cta-left-url:
optional string cta-right-url:
optional string info:
integer width: $width
children childs:
boolean center: false
boolean center-img: false
boolean dot-img: false
integer height: 870
optional boolean margin-top: true
boolean bottom: false
optional boolean small-img: false
optional boolean right-img: false
optional boolean top-img: false
-- lib2.hero-section: $hero-section.title
image: $hero-section.image
cta-left-text: $hero-section.cta-left-text
cta-right-text: $hero-section.cta-right-text
cta-left-url: $hero-section.cta-left-url
cta-right-url: $hero-section.cta-right-url
info: $hero-section.info
width: $hero-section.width
childs: $hero-section.childs
center: $hero-section.center
center-img: $hero-section.center-img
dot-img: $hero-section.dot-img
height: $hero-section.height
margin-top: $hero-section.margin-top
bottom: $hero-section.bottom
small-img: $hero-section.small-img
right-img: $hero-section.right-img
top-img: $hero-section.top-img
-- end: hero-section
-- component metrics-card:
integer width: $width
-- lib3.metrics-card:
width: $metrics-card.width
-- end: metrics-card
-- component features-card:
children features-wrap:
integer width: $width
-- lib3.features-card:
features-wrap: $features-card.features-wrap
width: $features-card.width
-- end: features-card
-- component snippet-card-left:
caption title:
optional string description:
optional string cta-text:
optional ftd.color bgcolor: $inherited.colors.custom.three
optional ftd.image-src image-mask: $assets.files.static.features.web-project-mask.svg
optional string link:
optional integer pull-top: 0
children card-wrap:
integer z-index: 0
integer width: $width
-- lib3.snippet-card-left: $snippet-card-left.title
description: $snippet-card-left.description
cta-text: $snippet-card-left.cta-text
bgcolor: $snippet-card-left.bgcolor
image-mask: $snippet-card-left.image-mask
link: $snippet-card-left.link
pull-top: $snippet-card-left.pull-top
card-wrap: $snippet-card-left.card-wrap
z-index: $snippet-card-left.z-index
-- end: snippet-card-left
-- component snippet-card-right:
caption title:
optional string description:
optional string cta-text:
optional ftd.color bgcolor: $inherited.colors.custom.one
optional ftd.image-src image-mask: $assets.files.static.features.web-project-mask.svg
optional string link:
optional integer pull-top: 0
optional boolean hide-arrows: false
children card-wrap:
integer z-index: 0
-- lib3.snippet-card-right: $snippet-card-right.title
description: $snippet-card-right.description
cta-text: $snippet-card-right.cta-text
bgcolor: $snippet-card-right.bgcolor
image-mask: $snippet-card-right.image-mask
link: $snippet-card-right.link
pull-top: $snippet-card-right.pull-top
hide-arrows: $snippet-card-right.hide-arrows
card-wrap: $snippet-card-right.card-wrap
z-index: $snippet-card-right.z-index
-- end: snippet-card-right
-- component featured-card-text:
caption title:
optional string description:
optional string cta-title:
optional string cta-link:
-- lib3.featured-card-text: $featured-card-text.title
description: $featured-card-text.description
cta-title: $featured-card-text.cta-title
cta-link: $featured-card-text.cta-link
-- end: featured-card-text
-- component benefits-card:
caption title:
optional integer width: $width
children benefits-wrap:
optional body body:
integer spacing: 160
boolean widthfill: false
optional string role:
optional boolean to-left: false
optional boolean no-margin: false
optional boolean left-align: false
optional boolean center-text: false
ftd.color bg-color: $inherited.colors.background.step-1
optional ftd.image-src logo:
-- lib4.benefits-card: $benefits-card.title
width: $benefits-card.width
benefits-wrap: $benefits-card.benefits-wrap
body: $benefits-card.body
spacing: $benefits-card.spacing
widthfill: $benefits-card.widthfill
role: $benefits-card.role
to-left: $benefits-card.to-left
no-margin: $benefits-card.no-margin
left-align: $benefits-card.left-align
center-text: $benefits-card.center-text
bg-color: $benefits-card.bg-color
logo: $benefits-card.logo
-- end: benefits-card
-- component benefits-info-card:
ftd.image-src icon: $assets.files.static.benefits.benefits-icon-1.svg
caption title:
optional string info:
boolean align-left: false
-- lib4.benefits-info-card: $benefits-info-card.title
icon: $benefits-info-card.icon
info: $benefits-info-card.info
align-left: $benefits-info-card.align-left
-- end: benefits-info-card
-- component trending-templates:
caption title:
optional string info:
optional string cta-text:
optional string cta-link:
integer width: $width
children trending-wrap:
optional boolean no-img: false
optional boolean img:
optional boolean blank: false
optional boolean system-image: false
optional ftd.color bgcolor: $inherited.colors.background.step-2
optional ftd.image image:
optional integer margin-top:
-- lib3.trending-templates: $trending-templates.title
info: $trending-templates.info
cta-text: $trending-templates.cta-text
cta-link: $trending-templates.cta-link
width: $trending-templates.width
trending-wrap: $trending-templates.trending-wrap
no-img: $trending-templates.no-img
img: $trending-templates.img
blank: $trending-templates.blank
system-image: $trending-templates.system-image
bgcolor: $trending-templates.bgcolor
image: $trending-templates.image
margin-top: $trending-templates.margin-top
-- end: trending-templates
-- component trending-card:
caption title:
ftd.image-src image: $assets.files.static.templates.image-1.svg
optional string link:
-- lib3.trending-card: $trending-card.title
image: $trending-card.image
link: $trending-card.link
-- end: trending-card
-- component excel-promo-card:
caption title:
optional string info:
optional string cta-text:
optional string cta-link:
optional string cta-role:
optional ftd.image-src image: $assets.files.static.charts-image.svg
optional ftd.image-src back-image:
optional ftd.color bgcolor: $inherited.colors.custom.two
integer width: $width
children promo-wrap:
boolean left: false
optional boolean no-img: false
optional boolean top-img: false
optional boolean down-img: false
boolean top: false
boolean right: false
boolean left-text: false
boolean keep-dark: true
boolean two-btn: false
optional string cta-left-text:
optional string cta-right-text:
optional boolean center: false
-- lib3.excel-promo-card: $excel-promo-card.title
info: $excel-promo-card.info
cta-text: $excel-promo-card.cta-text
cta-link: $excel-promo-card.cta-link
cta-role: $excel-promo-card.cta-role
image: $excel-promo-card.image
bgcolor: $excel-promo-card.bgcolor
width: $excel-promo-card.width
promo-wrap: $excel-promo-card.promo-wrap
keep-dark: $excel-promo-card.keep-dark
left: $excel-promo-card.left
no-img: $excel-promo-card.no-img
back-image: $excel-promo-card.back-image
top-img: $excel-promo-card.top-img
down-img: $excel-promo-card.down-img
top: $excel-promo-card.top
right: $excel-promo-card.right
left-text: $excel-promo-card.left-text
center: $excel-promo-card.center
two-btn: $excel-promo-card.two-btn
cta-left-text: $excel-promo-card.cta-left-text
cta-right-text: $excel-promo-card.cta-right-text
-- end: excel-promo-card
-- component card-with-icons-bottom:
optional caption title:
optional string cta-text:
optional string cta-link:
optional string info:
integer width: $width
children icons-wrap:
optional boolean no-padding: false
-- lib3.card-with-icons-bottom: $card-with-icons-bottom.title
cta-text: $card-with-icons-bottom.cta-text
cta-link: $card-with-icons-bottom.cta-link
info: $card-with-icons-bottom.info
width: $card-with-icons-bottom.width
icons-wrap: $card-with-icons-bottom.icons-wrap
no-padding: $card-with-icons-bottom.no-padding
-- end: card-with-icons-bottom
-- component image-card-with-title:
optional caption title:
ftd.image-src src:
-- lib3.image-card-with-title: $image-card-with-title.title
src: $image-card-with-title.src
-- end: image-card-with-title
-- component rounded-corner-card:
caption title:
optional string info:
optional string cta-text:
optional string cta-link:
optional ftd.image-src image:
integer width: $width
ftd.color bgcolor: $inherited.colors.custom.two
children card-wrap:
-- lib3.rounded-corner-card: $rounded-corner-card.title
info: $rounded-corner-card.info
cta-text: $rounded-corner-card.cta-text
cta-link: $rounded-corner-card.cta-link
image: $rounded-corner-card.image
width: $rounded-corner-card.width
bgcolor: $rounded-corner-card.bgcolor
card-wrap: $rounded-corner-card.card-wrap
-- end: rounded-corner-card
-- component text-bubble:
optional ftd.color bgcolor: $inherited.colors.custom.one
optional ftd.image-src text-image-1:
optional ftd.image-src text-image-2:
optional integer spacing:
integer width: $width
children space:
-- lib2.text-bubble:
bgcolor: $text-bubble.bgcolor
text-image-1: $text-bubble.text-image-1
text-image-2: $text-bubble.text-image-2
spacing: $text-bubble.spacing
width: $text-bubble.width