generated from fastn-stack/fastn-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
quote.ftd
2700 lines (1749 loc) · 45.1 KB
/
quote.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/bling/assets
-- import: fifthtry.github.io/package-doc/doc as pd
-- ftd.responsive-type copy-relaxed:
desktop: $copy-relax
mobile: $copy-relax
weight: 700
-- ftd.type heading-40-bold-desktop:
line-height.fixed.px: 48
size.px: 40
letter-spacing.fixed.px: 0
-- ftd.responsive-type heading-40-bold:
desktop: $heading-40-bold-desktop
mobile: $heading-40-bold-desktop
weight: 700
-- ftd.type heading-small-bold-desktop:
line-height.fixed.px: 36
size.px: 24
letter-spacing.fixed.px: 0
-- ftd.type heading-small-bold:
desktop: $heading-small-bold-desktop
mobile: $heading-small-bold-desktop
xl: $heading-small-bold-desktop
weight: 700
-- ftd.responsive-type fine-print-bold: $inherited.types.fine-print.font
desktop: $inherited.types.fine-print.desktop
mobile: $inherited.types.fine-print.mobile
weight: 700
-- ftd.color image-color:
light: rgba(192,192,192,0.3)
dark: rgba(192,192,192,0.3)
-- bling.page: `quote` and it's Usage
`-- quote` can be used as part of blog posts to highlight a quote from blogger
OR highlighting important notes on documentation etc.
-- pd.package: `quote`
name: fifthtry.github.io/bling
To use these quotes on your web package add below into `FASTN.ftd` file:
-- cb.code:
lang: ftd
\-- fastn.dependency: fifthtry.github.io/bling as bling
\-- fastn.auto-import: bling/quote as quote
-- tf.markdown:
Once you add above lines into your web package, add `quote` into your `.ftd`
files:
-- tf.h2: List of quotes we designed for you:
-- tf.h3: 1: `-- charcoal`
-- cb.code: Example code for `-- charcoal`
lang: ftd
\-- quote.charcoal: Amit Upadhyay
label: CEO
avatar: $assets.files.static.amitu.jpg
logo: $assets.files.static.fifthtry.svg
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua..
-- tf.markdown:
Output of above:
-- charcoal: Amit Upadhyay
label: CEO
avatar: $assets.files.static.amitu.jpg
logo: $assets.files.static.fifthtry.svg
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua..
-- tf.h3: 2: `-- marengo`
-- cb.code: Example code for `-- marengo`
lang: ftd
\-- quote.marengo: Steve Jobs
Your time is limited, so don't waste it living someone else's life. Don't be
trapped by dogma – which is living with the results of other people's
thinking.
-- tf.markdown:
Output of above:
-- marengo: Steve Jobs
Your time is limited, so don't waste it living someone else's life. Don't be
trapped by dogma – which is living with the results of other people's
thinking.
-- tf.h3: 3: `-- marengo-hug`
-- cb.code: Example code for `-- marengo-hug`
lang: ftd
\-- quote.marengo-hug: Oprah Winfrey
If you look at what you have in life, you'll always have more. If you look at
what you don't have in life, you'll never have enough.
-- tf.markdown:
Output of above:
-- marengo-hug: Oprah Winfrey
If you look at what you have in life, you'll always have more. If you look at
what you don't have in life, you'll never have enough.
-- tf.h3: 4: `-- scorpion`
-- cb.code: Example code for `-- scorpion`
lang: ftd
\-- quote.scorpion: Eleanor Roosevelt
label: U.S.A.
"The future belongs to those who believe in the beauty of their dreams."
-- tf.markdown:
Output of above:
-- scorpion: Eleanor Roosevelt
label: U.S.A.
"The future belongs to those who believe in the beauty of their dreams."
-- tf.h3: 5: `-- chalice`
-- cb.code: Example code for `-- chalice`
lang: ftd
\-- quote.chalice: Nelson Mandela
The greatest glory in living lies not in never falling, but in rising every time
we fall.
-- tf.markdown:
Output of above:
-- chalice: Nelson Mandela
The greatest glory in living lies not in never falling, but in rising every time
we fall.
-- tf.h3: 6: `-- onyx`
-- cb.code: Example code for `-- onyx`
lang: ftd
\-- quote.onyx: Barack Obama
The real test is not whether you avoid this failure, because you won't. It's
whether you let it harden or shame you into inaction, or whether you learn from
it; whether you choose to persevere.
-- tf.markdown:
Output of above:
-- onyx: Barack Obama
The real test is not whether you avoid this failure, because you won't. It's
whether you let it harden or shame you into inaction, or whether you learn from
it; whether you choose to persevere.
-- tf.h3: 7: `-- silver`
-- cb.code: Example code for `-- silver`
lang: ftd
\-- quote.silver: Helen Keller
Life is either a daring adventure or nothing at all.
-- tf.markdown:
Output of above:
-- silver: Helen Keller
Life is either a daring adventure or nothing at all.
-- tf.h3: 8: `-- storm-cloud`
-- cb.code: Example code for `-- storm-cloud`
lang: ftd
\-- quote.storm-cloud: M.K. Gandhi
"A man is but a product of his thoughts. What he thinks he becomes."
-- tf.markdown:
Output of above:
-- storm-cloud: M.K. Gandhi
"A man is but a product of his thoughts. What he thinks he becomes."
-- tf.h3: 9: `-- vampire`
-- cb.code: Example code for `-- vampire`
lang: ftd
\-- quote.vampire: Thomas Jefferson
"I find that the harder I work, the more luck I seem to have."
-- tf.markdown:
Output of above:
-- vampire: Thomas Jefferson
"I find that the harder I work, the more luck I seem to have."
-- tf.h3: 10: `-- rustic`
-- cb.code: Example code for `-- rustic`
lang: ftd
\-- quote.rustic: Dr. APJ Abdul Kalam
"All of us do not have equal talent. But, all of us have an equal opportunity to
develop our talents."
-- tf.markdown:
Output of above:
-- rustic: Dr. APJ Abdul Kalam
"All of us do not have equal talent. But, all of us have an equal opportunity to
develop our talents."
-- tf.h3: 11: `-- echo`
-- cb.code: Example code for `-- echo`
lang: ftd
\-- quote.echo: Swami Vivekananda
"Take up one idea. Make that one idea your life; dream of it; think of it; live
on that idea. Let the brain, the body, muscles, nerves, every part of your
body be full of that idea, and just leave every other idea alone. This is the
way to success, and this is the way great spiritual giants are produced."
-- tf.markdown:
Output of above:
-- echo: Swami Vivekananda
"Take up one idea. Make that one idea your life; dream of it; think of it; live
on that idea. Let the brain, the body, muscles, nerves, every part of your
body be full of that idea, and just leave every other idea alone. This is the
way to success, and this is the way great spiritual giants are produced."
-- tf.h3: 12: `-- window`
-- cb.code: Example code for `-- window`
lang: ftd
\-- quote.window: Mark Zuckerberg
"If you just work on stuff that you like and you're passionate about, you don't
have to have a master plan with how things will play out."
-- tf.markdown:
Output of above:
-- window: Mark Zuckerberg
"If you just work on stuff that you like and you're passionate about, you don't
have to have a master plan with how things will play out."
-- tf.h3: 13: `-- matte`
-- cb.code: Example code for `-- matte`
lang: ftd
\-- quote.matte: Swami Vivekananda
"Take up one idea. Make that one idea your life; dream of it; think of it; live
on that idea. Let the brain, the body, muscles, nerves, every part of your
body be full of that idea, and just leave every other idea alone. This is the
way to success, and this is the way great spiritual giants are produced."
-- tf.markdown:
Output of above:
-- matte: Swami Vivekananda
"Take up one idea. Make that one idea your life; dream of it; think of it; live
on that idea. Let the brain, the body, muscles, nerves, every part of your
body be full of that idea, and just leave every other idea alone. This is the
way to success, and this is the way great spiritual giants are produced."
-- tf.h3: 14: `-- antique`
-- cb.code: Example code for `-- antique`
lang: ftd
\-- quote.antique: Socrates
"Strong minds discuss ideas, average minds."
-- tf.markdown:
Output of above:
-- antique: Socrates
"Strong minds discuss ideas, average minds."
-- tf.h3: 15: `-- bubble`
-- cb.code: Example code for `-- bubble`
lang: ftd
\-- quote.bubble: Socrates
"To find yourself, think for yourself."
-- tf.markdown:
Output of above:
-- bubble: Socrates
"To find yourself, think for yourself."
-- tf.h3: 16: `-- electric`
-- cb.code: Example code for `-- electric`
lang: ftd
\-- quote.electric: Socrates
“If you don't get what you want, you suffer; if you get what you don't want, you
suffer; even when you get exactly what you want, you still suffer because you
can't hold on to it forever. Your mind is your predicament. It wants to be
free of change. Free of pain, free of the obligations of life and death. But
change is law and no amount of pretending will alter that reality.”
-- tf.markdown:
Output of above:
-- electric: Socrates
“If you don't get what you want, you suffer; if you get what you don't want, you
suffer; even when you get exactly what you want, you still suffer because you
can't hold on to it forever. Your mind is your predicament. It wants to be
free of change. Free of pain, free of the obligations of life and death. But
change is law and no amount of pretending will alter that reality.”
-- tf.h3: 17: `-- chrome`
-- cb.code: Example code for `-- chrome`
lang: ftd
\-- quote.chrome: Swami Vivekananda
"Take up one idea. Make that one idea your life; dream of it; think of it; live
on that idea. Let the brain, the body, muscles, nerves, every part of your
body be full of that idea, and just leave every other idea alone. This is the
way to success, and this is the way great spiritual giants are produced."
-- tf.markdown:
Output of above:
-- chrome: Swami Vivekananda
"Take up one idea. Make that one idea your life; dream of it; think of it; live
on that idea. Let the brain, the body, muscles, nerves, every part of your
body be full of that idea, and just leave every other idea alone. This is the
way to success, and this is the way great spiritual giants are produced."
-- tf.h3: 18: `-- dorian`
-- cb.code: Example code for `-- dorian`
lang: ftd
\-- quote.dorian: Swami Vivekananda
“You have to grow from the inside out. None can teach you, none can make you
spiritual. There is no other teacher but your own soul.”
-- tf.markdown:
Output of above:
-- dorian: Swami Vivekananda
“You have to grow from the inside out. None can teach you, none can make you
spiritual. There is no other teacher but your own soul.”
/-- tf.h3: 19: `-- octa`
/-- cb.code: Example code for `-- octa`
lang: ftd
\-- quote.octa: Swami Vivekananda
“Take up one idea. Make that one idea your life; dream of it; think of it; live
on that idea. Let the brain, the body, muscles, nerves, every part of your
body be full of that idea, and just leave every other idea alone. This is the
way to success, and this is the way great spiritual giants are produced.”
/-- tf.markdown:
Output of above:
/-- octa: Swami Vivekananda
“Take up one idea. Make that one idea your life; dream of it; think of it; live
on that idea. Let the brain, the body, muscles, nerves, every part of your
body be full of that idea, and just leave every other idea alone. This is the
way to success, and this is the way great spiritual giants are produced.”
-- end: bling.page
-- component charcoal:
optional caption title:
optional ftd.image-src quote-icon: $assets.files.static.quotes.svg
optional body body:
optional ftd.image-src avatar:
optional ftd.image-src logo:
optional string label:
ftd.color backgroundcolor: $inherited.colors.background.base
-- ftd.column:
width: fill-container
-- ftd.desktop:
-- quote-desktop: $charcoal.title
quote-icon: $charcoal.quote-icon
body: $charcoal.body
avatar: $charcoal.avatar
logo: $charcoal.logo
label: $charcoal.label
backgroundcolor: $charcoal.backgroundcolor
-- end: ftd.desktop
-- ftd.mobile:
-- quote-mobile: $charcoal.title
body: $charcoal.body
avatar: $charcoal.avatar
logo: $charcoal.logo
label: $charcoal.label
backgroundcolor: $charcoal.backgroundcolor
-- end: ftd.mobile
-- end: ftd.column
-- end: charcoal
-- component quote-desktop:
optional caption title:
optional ftd.image-src quote-icon: $assets.files.static.quotes.svg
optional body body:
optional ftd.image-src avatar:
optional ftd.image-src logo:
optional string label:
ftd.color backgroundcolor:
-- ftd.column:
width: fill-container
padding-vertical.px: 64
margin-top.px: 24
margin-bottom.px: 24
background.solid: $quote-desktop.backgroundcolor
-- ftd.row:
max-width.fixed.px: 1000
spacing.fixed.px: 80
align-self: center
width: fill-container
-- ftd.image:
src: $quote-desktop.quote-icon
width: auto
height.fixed.px: 72
-- ftd.column:
width: fill-container
max-width.fixed.px: 850
-- ftd.text:
role: $inherited.types.heading-large
color:$inherited.colors.text
$quote-desktop.body
-- end: ftd.column
-- end: ftd.row
-- ftd.row:
width: fill-container
margin-top.px: 24
align-self: center
max-width.fixed.px: 700
-- ftd.image:
src: $quote-desktop.avatar
width: auto
height.fixed.px: 60
border-radius.px: 100
margin-right.px: 20
-- ftd.image:
src: $quote-desktop.logo
width: auto
height.fixed.px: 44
padding-top.px: 16
margin-right.px: 48
-- ftd.column:
width: fill-container
-- ftd.text: $quote-desktop.title
role: $inherited.types.heading-small
color: $inherited.colors.text
-- ftd.text: $quote-desktop.label
role: $inherited.types.copy-small
color: $inherited.colors.text
-- end: ftd.column
-- end: ftd.row
-- end: ftd.column
-- end: quote-desktop
-- component quote-mobile:
optional caption title:
optional ftd.image-src quote-icon: $assets.files.static.quotes.svg
optional body body:
optional ftd.image-src avatar:
optional ftd.image-src logo:
optional string label:
ftd.color backgroundcolor:
-- ftd.column:
width: fill-container
padding-vertical.px: 32
padding-horizontal.px: 16
background.solid: $quote-mobile.backgroundcolor
margin-top.px: 24
margin-bottom.px: 24
-- ftd.image:
src: $quote-mobile.quote-icon
width: auto
height.fixed.px: 42
align-self: center
margin-bottom.px: 24
-- ftd.text:
width: auto
role: $inherited.types.heading-small
color: $inherited.colors.text
margin-bottom.px: 24
text-align: center
$quote-mobile.body
-- ftd.row:
spacing.fixed.px: 16
align-self: center
margin-bottom.px: 16
-- ftd.image:
src: $quote-mobile.avatar
width: auto
height.fixed.px: 42
align-self: center
border-radius.px: 100
-- ftd.image:
src: $quote-mobile.logo
width: auto
height.fixed.px: 24
align-self: center
-- end: ftd.row
-- ftd.column:
spacing.fixed.px: 8
align-self: center
-- ftd.text: $quote-mobile.title
role: $inherited.types.fine-print
color: $inherited.colors.text
-- ftd.text: $quote-mobile.label
role: $inherited.types.fine-print
color: $inherited.colors.text
align-self: center
-- end: ftd.column
-- end: ftd.column
-- end: quote-mobile
-- component marengo:
optional caption title:
body body:
ftd.color backgroundcolor: $inherited.colors.background.base
-- ftd.column:
width: fill-container
margin-top.px: 24
margin-bottom.px: 24
-- ftd.desktop:
-- quote-1-desktop: $marengo.title
body: $marengo.body
backgroundcolor: $marengo.backgroundcolor
-- end: ftd.desktop
-- ftd.mobile:
-- quote-1-mobile: $marengo.title
body: $marengo.body
backgroundcolor: $marengo.backgroundcolor
-- end: ftd.mobile
-- end: ftd.column
-- end: marengo
-- component quote-1-desktop:
body body:
optional caption title:
ftd.color backgroundcolor: $inherited.colors.background.base
-- ftd.column:
width: fill-container
background.solid: $quote-1-desktop.backgroundcolor
margin-top.px: 20
margin-bottom.px: 24
max-width.fixed.px: 1056
-- ftd.row:
width: fill-container
border-left-width.px: 4
padding-left.px: 40
border-color: $inherited.colors.border
-- ftd.column:
width: fill-container
-- ftd.text:
text: $quote-1-desktop.body
color: $inherited.colors.text
role: $inherited.types.copy-large
-- ftd.row:
align-self: end
spacing.fixed.px: 8
margin-top.px: 16
-- ftd.text: ~
align-self: center
color: $inherited.colors.text
role: $inherited.types.copy-small
-- ftd.text: $quote-1-desktop.title
align-self: center
color: $inherited.colors.text
role: $inherited.types.fine-print
white-space: nowrap
-- end: ftd.row
-- end: ftd.column
-- end: ftd.row
-- end: ftd.column
-- end: quote-1-desktop
-- component quote-1-mobile:
optional caption title:
body body:
ftd.color backgroundcolor:
-- ftd.column:
width: fill-container
background.solid: $quote-1-mobile.backgroundcolor
max-width.fixed.px: 1056
-- ftd.row:
width: fill-container
border-left-width.px: 4
padding-left.px: 32
border-color: $inherited.colors.border
-- ftd.column:
width: fill-container
-- ftd.text:
text: $quote-1-mobile.body
color: $inherited.colors.text
role: $inherited.types.copy-small
-- ftd.row:
align-self: end
spacing.fixed.px: 8
-- ftd.text: ~
color: $inherited.colors.text
role: $inherited.types.copy-small
-- ftd.text: $quote-1-mobile.title
align-self: end
color: $inherited.colors.text
role: $inherited.types.fine-print
white-space: nowrap
-- end: ftd.row
-- end: ftd.column
-- end: ftd.row
-- end: ftd.column
-- end: quote-1-mobile
-- component marengo-hug:
optional caption title:
body body:
ftd.color backgroundcolor: $inherited.colors.background.base
-- ftd.column:
width: fill-container
margin-top.px: 24
margin-bottom.px: 24
-- ftd.desktop:
-- quote-2-desktop: $marengo-hug.title
body: $marengo-hug.body
backgroundcolor: $marengo-hug.backgroundcolor
-- end: ftd.desktop
-- ftd.mobile:
-- quote-2-mobile: $marengo-hug.title
body: $marengo-hug.body
backgroundcolor: $marengo-hug.backgroundcolor
-- end: ftd.mobile
-- end: ftd.column
-- end: marengo-hug
-- component quote-2-desktop:
body body:
optional caption title:
ftd.color backgroundcolor: $inherited.colors.background.base
-- ftd.column:
width: fill-container
background.solid: $quote-2-desktop.backgroundcolor
margin-top.px: 20
margin-bottom.px: 24
max-width.fixed.px: 2056
-- ftd.row:
width: fill-container
border-left-width.px: 4
padding-left.px: 40
border-color: $inherited.colors.border
-- ftd.column:
width: fill-container
-- ftd.text:
color: $inherited.colors.text
role: $inherited.types.copy-large
style: italic
text-align: end
$quote-2-desktop.body
-- ftd.row:
align-self: end
spacing.fixed.px: 8
margin-top.px: 16
-- ftd.text: ~
align-self: center
color: $inherited.colors.text
role: $inherited.types.copy-small
-- ftd.text: $quote-2-desktop.title
align-self: center
color: $inherited.colors.text
role: $inherited.types.fine-print
white-space: nowrap
style: italic
-- end: ftd.row
-- end: ftd.column
-- end: ftd.row
-- end: ftd.column
-- end: quote-2-desktop
-- component quote-2-mobile:
optional caption title:
body body:
ftd.color backgroundcolor:
-- ftd.column:
width: fill-container
background.solid: $quote-2-mobile.backgroundcolor
max-width.fixed.px: 2056
-- ftd.row:
width: fill-container
border-left-width.px: 4
padding-left.px: 32
border-color: $inherited.colors.border
-- ftd.column:
width: fill-container
-- ftd.text:
color: $inherited.colors.text
role: $inherited.types.copy-small
style: italic
text-align: end
$quote-2-mobile.body
-- ftd.row:
align-self: end
spacing.fixed.px: 8
margin-top.px: 16
-- ftd.text: ~
color: $inherited.colors.text
role: $inherited.types.copy-small
-- ftd.text: $quote-2-mobile.title
align-self: end
color: $inherited.colors.text
role: $inherited.types.fine-print
white-space: nowrap
style: italic
-- end: ftd.row
-- end: ftd.column
-- end: ftd.row
-- end: ftd.column
-- end: quote-2-mobile
-- component scorpion:
optional caption title:
optional string label: