This repository has been archived by the owner on Nov 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
select-book-theme.ftd-0.2
1373 lines (949 loc) · 19.1 KB
/
select-book-theme.ftd-0.2
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: fastn.dev/assets
-- boolean dark-mode: false
-- boolean sidebar-open: false
-- string neutral: #fff
-- string neutral-200: #e5e5e5
-- string neutral-300: #F9F9F9
-- string neutral-400: #E1E1E1
-- string neutral-500: #323546
-- string neutral-600: #3E4155
-- string neutral-700: #18191a
-- string neutral-800: #000
-- integer content-padding: 150
-- integer max-width: 1000
-- string github: NA
-- string site-name: NA
-- optional ftd.image-src site-icon:
-- string site-url: NA
-- record toc-item:
caption title:
string url:
toc-item list children:
-- record footer-item:
caption label:
toc-item list children:
-- toc-item list header-toc:
-- toc-item list toc:
-- footer-item list footer-toc:
-- ftd.column page:
width: fill
background-color: $fastn.color.main.background.base
open: true
append-at: content-container
--- ftd.column:
if: $sidebar-open
anchor: window
top: 0
bottom: 0
left: 0
right: 0
background-color: $fastn.color.main.background.base
z-index: 1
$on-click$: toggle $sidebar-open
--- container: ftd.main
--- render-toc-mobile:
if: $sidebar-open
toc-obj: $header-toc
--- container: ftd.main
--- header:
if: not $ft.is-mobile
--- container: ftd.main
--- header-mobile:
if: $ft.is-mobile
--- ftd.column:
id: content-container
width: fill
--- container: ftd.main
--- footer:
footer-toc: $footer-toc
-- ftd.column create-section:
width: fill
open: true
append-at: content-container
padding-vertical: 30
--- ftd.column:
if: not $ft.is-mobile
max-width: 1000
width: fill
align: center
id: content-container
--- container: ftd.main
--- ftd.column:
if: $ft.is-mobile
width: fill
align: center
padding-horizontal if $ft.is-mobile: 20
id: content-container
-- ftd.column content:
width: fill
open: true
append-at: content-container
padding-vertical: 30
--- ftd.column:
if: not $ft.is-mobile
max-width: 1200
width: fill
align: center
id: content-container
--- container: ftd.main
--- ftd.column:
if: $ft.is-mobile
width: fill
align: center
padding-horizontal if $ft.is-mobile: 20
id: content-container
-- ftd.column doc-page:
toc-item list toc: $toc
width: fill
open: true
append-at: main-container
--- doc-page-desktop:
if: not $ft.is-mobile
id: main-container
toc: $toc
--- container: ftd.main
--- doc-page-mobile:
if: $ft.is-mobile
id: main-container
toc: $toc
-- ftd.column doc-page-desktop:
toc-item list toc: $toc
width: fill
open: true
append-at: main-container
background-color: $fastn.color.main.background.base
--- header:
--- ftd.row:
width: fill
id: main-row
--- render-toc:
toc-obj: $toc
--- container: main-row
--- ftd.column:
id: main-container
max-width: 800
align: top
padding-horizontal: 20
padding-vertical: 20
--- container: ftd.main
--- footer:
footer-toc: $footer-toc
-- ftd.column doc-page-mobile:
toc-item list toc: $toc
width: fill
open: true
append-at: main-container
background-color: $fastn.color.main.background.base
--- ftd.column:
if: $sidebar-open
anchor: window
top: 0
bottom: 0
left: 0
right: 0
background-color: $fastn.color.main.background.base
z-index: 1
$on-click$: toggle $sidebar-open
--- container: ftd.main
--- render-toc-mobile:
if: $sidebar-open
toc-obj: $toc
--- container: ftd.main
--- header-mobile:
--- ftd.row:
width: fill
id: main-row
--- ftd.column:
id: main-container
width: fill
align: top
padding-horizontal: 20
padding-vertical: 20
--- container: ftd.main
--- footer:
footer-toc: $footer-toc
-- ftd.text site-link:
caption title:
color: $fastn.color.main.text
text: $title
role: $fastn.type.label-big
position: center
-- ftd.text header-link:
caption title:
string link:
role: $fastn.type.label-big
color: $fastn.color.main.text
text: $title
link: $link
position: center
-- ftd.row header:
width: fill
background-color: $fastn.color.main.background.base
padding-horizontal: 20
padding-vertical: 10
border-bottom: 1
border-color: $fastn.color.main.text
--- ftd.row:
position: left
spacing: 25
id: left-side
--- ftd.row:
spacing: 10
link: $site-url
--- ftd.image:
src: $site-icon
height: 32
width: auto
--- site-link: $site-name
--- container: left-side
--- header-link: $obj.title
$loop$: $header-toc as $obj
link: $obj.url
--- container: ftd.main
--- ftd.column:
width: fill
position: center
--- ftd.row:
position: right
spacing: 30
width: auto
id: action-container
--- ftd.image:
src: $assets.files.static.icon-github.svg
width: 20
min-width: 20
link: $github
align: center
--- container: action-container
--- ftd.image:
if: not $ftd.dark-mode
src: $assets.files.static.icon-mode.svg
height: 18
$on-click$: message-host enable-dark-mode
align: center
--- container: action-container
-- ftd.row header-mobile:
width: fill
background-color: $fastn.color.main.background.base
padding-horizontal: 20
padding-vertical: 10
border-bottom: 1
border-color: $fastn.color.main.text
--- ftd.row:
position: left
spacing: 25
id: left-side
--- ftd.image:
src: $assets.files.static.hamburger.svg
width: 24
height: auto
$on-click$: toggle $sidebar-open
position: center
--- ftd.row:
spacing: 10
link: $site-url
--- ftd.image:
src: $site-icon
height: 32
width: auto
--- site-link: $site-name
--- container: left-side
--- container: ftd.main
--- ftd.row:
position: right
spacing: 30
width: auto
--- ftd.image:
src: $assets.files.static.icon-github.svg
width: 20
min-width: 20
link: $github
--- ftd.image:
src: $assets.files.static.icon-github.svg
height: 18
$on-click$: toggle $ftd.dark-mode
-- ftd.text footer-link:
string url:
caption title:
link: $url
text: $title
min-width: fit-content
padding-left: 10
padding-top: 6
padding-bottom: 6
color: $fastn.color.main.text
role: $fastn.type.label-big
-- ftd.column footer-instance:
footer-item footer-toc:
min-width: portion 1
--- ftd.text: $footer-toc.label
min-width: fit-content
padding-left: 10
padding-top: 3
padding-bottom: 8
color: $fastn.color.main.text
role: $fastn.type.label-big
--- footer-link: $obj.title
$loop$: $footer-toc.children as $obj
url: $obj.url
-- ftd.row footer:
footer-item list footer-toc:
width: fill
--- footer-desktop:
if: not $ft.is-mobile
footer-toc: $footer-toc
--- footer-mobile:
if: $ft.is-mobile
footer-toc: $footer-toc
-- ftd.row footer-desktop:
footer-item list footer-toc:
width: fill
background-color: $fastn.color.main.background.base
padding-horizontal: 150
padding-vertical: 50
spacing: space-between
--- footer-instance:
$loop$: $footer-toc as $obj
footer-toc: $obj
-- ftd.column footer-mobile:
footer-item list footer-toc:
width: fill
background-color: $fastn.color.main.background.base
padding-horizontal: 20
padding-vertical: 50
position: left
--- footer-instance:
$loop$: $footer-toc as $obj
footer-toc: $obj
-- ftd.column hero:
caption title:
ftd.image-src image:
open: true
append-at: main-container
--- hero-desktop: $title
if: not $ft.is-mobile
id: main-container
image: $image
--- container: ftd.main
--- hero-mobile: $title
if: $ft.is-mobile
id: main-container
image: $image
-- ftd.column hero-desktop:
caption title:
ftd.image-src image:
width: fill
background-color: $fastn.color.main.background.base
padding-horizontal: $content-padding
padding-vertical: 50
spacing: 40
open: true
append-at: desktop-action-container
--- ftd.row:
width: fill
--- ftd.text: $title
color: $fastn.color.main.text
width: percent 75
position: center
role: $fastn.type.heading-large
--- ftd.image:
src: $image
width: percent 15
height: auto
position: right
--- container: ftd.main
--- ftd.row:
id: desktop-action-container
spacing: 40
-- ftd.column hero-mobile:
caption title:
ftd.image-src image:
width: fill
background-color: $fastn.color.main.background.base
padding-horizontal: 20
padding-vertical: 50
spacing: 30
open: true
append-at: mobile-action-container
--- ftd.image:
src: $image
width: percent 50
height: auto
position: center
--- ftd.text: $title
color: $fastn.color.main.text
padding-horizontal: 20
position: center
text-align: center
role: $fastn.type.heading-large
--- container: ftd.main
--- ftd.column:
id: mobile-action-container
position: center
padding-top: 10
spacing: 30
-- ftd.text action-button:
caption title:
string url:
optional ftd.color color: $fastn.color.main.text
optional ftd.color background-color: $fastn.color.main.background.base
text: $title
link: $url
background-color: $background-color
color: $color
border-radius: 6
padding-vertical: 15
padding-horizontal: 40
role: $fastn.type.label-big
-- ftd.text banner:
caption title:
text: $title
padding: 45
text-align: center
color: $fastn.color.main.text
background-color: $fastn.color.main.background.base
width: fill
role: $fastn.type.heading-large
-- ftd.column toc-instance:
toc-item toc:
padding-left: 10
padding-top: 2
padding-bottom: 2
--- ftd.text:
toc-item toc:
link: $toc.url
text: $toc.title
min-width: fit-content
padding-left: 10
padding-top: 3
padding-bottom: 3
color: $fastn.color.main.text
role: $fastn.type.label-big
--- toc-instance:
$loop$: $toc.children as $obj
toc: $obj
-- ftd.column render-toc:
toc-item list toc-obj:
sticky: true
top: 0
height: calc 100vh - 0px
overflow-y: auto
width: 300
align: top-left
padding-left: 10
padding-top: 15
padding-right: 20
padding-bottom: 40
border-right: 1
border-color: $fastn.color.main.text
--- toc-instance:
$loop$: $toc-obj as $obj
toc: $obj
-- ftd.column render-toc-mobile:
toc-item list toc-obj:
sticky: true
height: calc 100vh - 0px
overflow-y: auto
width: percent 70
align: top-left
padding-left: 10
padding-top: 15
padding-right: 20
padding-bottom: 40
border-right: 1
border-color: $fastn.color.main.text
anchor: window
left: 0
top: 0
background-color: $fastn.color.main.background.base
shadow-offset-x: 3
shadow-offset-y: 0
shadow-size: 1
shadow-blur: 10
/shadow-color: rgba (0, 0, 0, 0.05)
z-index: 4
--- toc-instance:
$loop$: $toc-obj as $obj
toc: $obj
-- ftd.text markdown:
body body:
optional boolean collapsed:
optional caption title:
optional boolean two_columns:
text: $body
color: $fastn.color.main.text
padding-bottom: 8
role: $fastn.type.copy-large
-- ftd.column h0:
caption title:
optional body body:
width: fill
region: h0
padding-bottom: 12
boolean open: true
append-at: inner
--- ftd.text:
text: $title
caption $title:
region: title
role: $fastn.type.heading-large
color: $fastn.color.main.text
padding-bottom: 16
padding-top: 8
$on-click$ if $open: toggle $open
--- ftd.column:
id: inner
if: $open
width: fill
--- markdown:
if: $body is not null
body: $body
-- ftd.column h1:
caption title:
optional body body:
boolean open: true
append-at: inner
width: fill
region: h1
padding-left: 20
border-left: 5
border-color: $fastn.color.main.cta-secondary.text
move-left: 25
margin-bottom: 30
$on-click$: toggle $open
--- ftd.row:
width: fill
spacing: 20
--- ftd.text:
caption $title:
text: $title
region: title
role: $fastn.type.heading-medium
color: $fastn.color.main.text
padding-bottom: 8
--- ftd.text: Click To Expand
if: not $open
role: $fastn.type.label-small
color: $fastn.color.main.cta-secondary.text
background-color: $fastn.color.main.cta-secondary.base
border-radius: 3
padding: 3
align: center
text-align: center
move-up: 2
--- container: ftd.main
--- ftd.column:
id: inner
if: $open
width: fill
$on-click$: stop-propagation
cursor: default
spacing: 20
--- markdown:
if: $body is not null
body: $body
-- ftd.column h2:
caption title:
optional body body:
width: fill
region: h2
padding-bottom: 12
boolean open: true
append-at: inner
--- ftd.text:
caption $title:
text: $title
region: title
role: $fastn.type.heading-small
color: $fastn.color.main.text
padding-bottom: 8
padding-top: 16
$on-click$: toggle $open
--- ftd.column:
id: inner
if: $open
width: fill
--- markdown:
if: $body is not null
body: $body
-- ftd.column h3:
caption title:
optional body body:
width: fill
region: h3
padding-bottom: 12
boolean open: true
append-at: inner
--- ftd.text:
caption $title:
text: $title
region: title
role: $fastn.type.heading-small
color: $fastn.color.main.text
padding-bottom: 8
padding-top: 16
$on-click$: toggle $open
--- ftd.column:
id: inner
if: $open
width: fill
--- markdown:
if: $body is not null
body: $body
-- ftd.column code:
optional caption caption:
body body:
string lang:
padding-bottom: 12
padding-top: 12
width: fill
--- ftd.text:
text: $caption
if: $caption is not null
role: $fastn.type.copy-relaxed
color: $fastn.color.main.text
width: fill
background-color: $fastn.color.main.background.base
padding-top: 10
padding-bottom: 10
padding-left: 20
padding-right: 20
border-top-radius: 4
--- ftd.code:
if: $ftd.dark-mode
text: $body
lang: $lang
width: fill
role: $fastn.type.copy-relaxed
color: $fastn.color.main.text
padding-top: 10
padding-left: 20
padding-bottom: 10
padding-right: 20
background-color: $fastn.color.main.background.base
border-top-radius if $caption is null: 4
border-bottom-radius: 4
border-width: 1
overflow-x: auto
--- ftd.code:
if: not $ftd.dark-mode
theme: InspiredGitHub
text: $body
lang: $lang
width: fill
role: $fastn.type.copy-relaxed
color: $fastn.color.main.text
padding-top: 10
padding-left: 20
padding-bottom: 10
padding-right: 20
background-color: $fastn.color.main.background.base
border-top-radius if $caption is null: 4
border-bottom-radius if $caption is null: 4
border-color: $fastn.color.main.text
border-width: 1
overflow-x: auto
-- ftd.row feature-list:
width: fill
open: true
append-at: main-container
--- ftd.row:
width: fill
if: not $ft.is-mobile
padding-horizontal: $content-padding
spacing: space-between
wrap: true
padding-bottom: 60
id: main-container
--- container: ftd.main
--- ftd.column:
if: $ft.is-mobile
width: fill
padding-horizontal: 20
spacing: space-around
wrap: true
padding-bottom: 40
id: main-container
-- ftd.column feature:
caption title:
ftd.image-src image:
body body:
width: percent 30
width if $ft.is-mobile: fill
spacing: 15
padding-top: 60
align: left
--- ftd.image:
src: $image
width: percent 60
align: center
--- container: ftd.main
--- ftd.text: $title
width: fill
text-align: center
color: $fastn.color.main.text
role: $fastn.type.label-big
--- ftd.text:
text: $body
width: fill
text-align: center
color: $fastn.color.main.text
role: $fastn.type.label-big
-- ftd.row testimony-list:
width: fill
background-color: $fastn.color.main.background.base
open: true
append-at: main-container
--- ftd.row:
width: fill
if: not $ft.is-mobile