-
Notifications
You must be signed in to change notification settings - Fork 0
/
custom.ftd
286 lines (166 loc) · 6.45 KB
/
custom.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
-- import: fastn-community.github.io/pragati-narrow-font/assets as pragati-narrow-assets
-- import: fifthtry.github.io/package-doc/doc as pd
-- import: fifthtry.github.io/package-doc/forest-theme as ds
-- import: fifthtry.github.io/package-doc/footer
;; ⚠️fastn-builders::⚠️ before using this file please find and replace pragati-narrow
;; with font name you have given inside
;; `fastn-community.github.io/pragati-narrow/FASTN.ftd file
-- ds.page:
show-footer: true
site-name: `pragati-narrow-font`
-- ds.page.footer:
-- footer.fastn-footer:
-- end: ds.page.footer
-- pd.package: FTD pragati-narrow package
name: fastn-community.github.io/pragati-narrow-font
This FTD font `pragati-narrow` package is for your ftd web projects. To Use this
pragati-narrow inside `FTD` project follow below instructions.
-- ds.h3: How to use pragati-narrow?
-- ds.code: Add this to your FASTN.ftd
lang: ftd
\-- fastn.dependency: fastn-community.github.io/pragati-narrow-font
-- ds.markdown:
After adding pragati-narrow dependency inside you `FASTN.ftd` file, You need to add
pragati-narrow assets and import it inside you `ftd` file where you are using this
font for your custom font types. To include pragati-narrow into your `ftd` file
follow below instructions.
-- ds.code:
lang: ftd
\-- import: fastn-community.github.io/pragati-narrow-font/assets as pragati-narrow-assets
-- ds.h3: How to create a custom pragati-narrow type?
-- ds.markdown:
How to use `ftd.type` to create a custom font `types` using pragati-narrow?
We don't recommend creating custom types. We recommend to use
our [pragati-narrow-typography](https://fastn-community.github.io/pragati-narrow-typography)
If you're using [pragati-narrow-typography](https://fastn-community.github.io/pragati-narrow-typography)
and still your designer has introduced new font size which is not included or
part of our [pragati-narrow-typography](https://fastn-community.github.io/pragati-narrow-typography)
then only define custom types.
We hope you shouldn't need to define a custom type.
Below is an example of creating a custom `ftd.type` using pragati-narrow.
-- ds.rendered:
-- ds.rendered.input:
\-- ftd.type pragati-narrow-size-12-desktop:
size.px: 12
weight: 400
font-family: $pragati-narrow-assets.fonts.Pragati-Narrow
\-- ftd.type pragati-narrow-size-12-mobile:
size.px: 12
weight: 400
font-family: $pragati-narrow-assets.fonts.Pragati-Narrow
\-- ftd.responsive-type pragati-narrow-size-12-400:
desktop: $pragati-narrow-size-12-desktop
mobile: $pragati-narrow-size-12-mobile
\-- ftd.text:
role: $pragati-narrow-size-12-400
color: $inherited.colors.text-strong
`font-size: 12px, font-weight: 400`
👉 The quick brown fox jumps over the lazy dog
-- ds.rendered.output:
-- ftd.text:
role: $pragati-narrow-size-12-400
color: $inherited.colors.text-strong
`font-size: 12px, font-weight: 400`
👉 The quick brown fox jumps over the lazy dog
-- end: ds.rendered.output
-- end: ds.rendered
-- end: ds.page
-- ftd.type pragati-narrow-size-12-desktop:
size.px: 12
weight: 400
font-family: $pragati-narrow-assets.fonts.Pragati-Narrow
-- ftd.type pragati-narrow-size-12-mobile:
size.px: 12
weight: 400
font-family: $pragati-narrow-assets.fonts.Pragati-Narrow
-- ftd.responsive-type pragati-narrow-size-12-400:
desktop: $pragati-narrow-size-12-desktop
mobile: $pragati-narrow-size-12-mobile
-- ftd.type pragati-narrow-size-12-500-desktop:
size.px: 12
weight: 500
font-family: $pragati-narrow-assets.fonts.Pragati-Narrow
-- ftd.type pragati-narrow-size-12-500-mobile:
size.px: 12
weight: 500
font-family: $pragati-narrow-assets.fonts.Pragati-Narrow
-- ftd.responsive-type pragati-narrow-size-12-500:
desktop: $pragati-narrow-size-12-500-desktop
mobile: $pragati-narrow-size-12-500-mobile
-- ftd.type pragati-narrow-size-12-800-desktop:
size.px: 12
weight: 800
font-family: $pragati-narrow-assets.fonts.Pragati-Narrow
-- ftd.type pragati-narrow-size-12-800-mobile:
size.px: 12
weight: 800
font-family: $pragati-narrow-assets.fonts.Pragati-Narrow
-- ftd.responsive-type pragati-narrow-size-12-800:
desktop: $pragati-narrow-size-12-800-desktop
mobile: $pragati-narrow-size-12-800-mobile
-- ftd.type pragati-narrow-size-18-desktop:
size.px: 18
weight: 400
font-family: $pragati-narrow-assets.fonts.Pragati-Narrow
-- ftd.type pragati-narrow-size-18-mobile:
size.px: 18
weight: 400
font-family: $pragati-narrow-assets.fonts.Pragati-Narrow
-- ftd.responsive-type pragati-narrow-size-18-400:
desktop: $pragati-narrow-size-18-desktop
mobile: $pragati-narrow-size-18-mobile
-- ftd.type pragati-narrow-size-18-500-desktop:
size.px: 18
weight: 500
font-family: $pragati-narrow-assets.fonts.Pragati-Narrow
-- ftd.type pragati-narrow-size-18-500-mobile:
size.px: 18
weight: 500
font-family: $pragati-narrow-assets.fonts.Pragati-Narrow
-- ftd.responsive-type pragati-narrow-size-18-500:
desktop: $pragati-narrow-size-18-500-desktop
mobile: $pragati-narrow-size-18-500-mobile
-- ftd.type pragati-narrow-size-18-800-desktop:
size.px: 18
weight: 800
font-family: $pragati-narrow-assets.fonts.Pragati-Narrow
-- ftd.type pragati-narrow-size-18-800-mobile:
size.px: 18
weight: 800
font-family: $pragati-narrow-assets.fonts.Pragati-Narrow
-- ftd.responsive-type pragati-narrow-size-18-800:
desktop: $pragati-narrow-size-18-800-desktop
mobile: $pragati-narrow-size-18-800-mobile
-- ftd.type pragati-narrow-size-48-desktop:
size.px: 48
weight: 400
font-family: $pragati-narrow-assets.fonts.Pragati-Narrow
-- ftd.type pragati-narrow-size-48-mobile:
size.px: 48
weight: 400
font-family: $pragati-narrow-assets.fonts.Pragati-Narrow
-- ftd.responsive-type pragati-narrow-size-48-400:
desktop: $pragati-narrow-size-48-desktop
mobile: $pragati-narrow-size-48-mobile
-- ftd.type pragati-narrow-size-48-500-desktop:
size.px: 48
weight: 500
font-family: $pragati-narrow-assets.fonts.Pragati-Narrow
-- ftd.type pragati-narrow-size-48-500-mobile:
size.px: 48
weight: 500
font-family: $pragati-narrow-assets.fonts.Pragati-Narrow
-- ftd.responsive-type pragati-narrow-size-48-500:
desktop: $pragati-narrow-size-48-500-desktop
mobile: $pragati-narrow-size-48-500-mobile
-- ftd.type pragati-narrow-size-48-800-desktop:
size.px: 48
weight: 800
font-family: $pragati-narrow-assets.fonts.Pragati-Narrow
-- ftd.type pragati-narrow-size-48-800-mobile:
size.px: 48
weight: 800
font-family: $pragati-narrow-assets.fonts.Pragati-Narrow
-- ftd.responsive-type pragati-narrow-size-48-800:
desktop: $pragati-narrow-size-48-800-desktop
mobile: $pragati-narrow-size-48-800-mobile