File tree 2 files changed +16
-3
lines changed
2 files changed +16
-3
lines changed Original file line number Diff line number Diff line change 201
201
}
202
202
203
203
.weight-230 {
204
+ font-family : var (--custom-font );
204
205
font-weight : 230 ;
205
206
}
206
207
207
208
.weight-normal {
209
+ font-family : var (--custom-font );
208
210
font-weight : normal;
209
211
}
210
212
211
213
.weight-bold {
214
+ font-family : var (--custom-font );
212
215
font-weight : bold;
213
216
}
214
217
215
218
.weight-850 {
219
+ font-family : var (--custom-font );
216
220
font-weight : 850 ;
217
221
}
218
222
219
223
.width-ec {
224
+ font-family : var (--custom-font );
220
225
font-stretch : extra-condensed;
221
226
}
222
227
223
228
.width-normal {
229
+ font-family : var (--custom-font );
224
230
font-stretch : normal;
225
231
}
226
232
227
233
.width-ee {
234
+ font-family : var (--custom-font );
228
235
font-stretch : extra-expanded;
229
236
}
230
237
231
238
.optical-sizing {
239
+ font-family : var (--custom-font );
240
+ }
241
+
242
+ .optical-sizing-none {
243
+ font-family : var (--custom-font );
232
244
font-optical-sizing : none;
233
245
}
234
246
@@ -1143,9 +1155,9 @@ <h3>Font width</h3>
1143
1155
< section id ="font-optical-sizing " data-checker ="on ">
1144
1156
< h3 > Font optical sizing</ h3 >
1145
1157
1146
- < p > This paragraph should allow the browser to enable optical sizing i.e. contrast of strokes and serifs.</ p >
1158
+ < p class =" optical-sizing " > This paragraph should allow the browser to enable optical sizing i.e. contrast of strokes and serifs.</ p >
1147
1159
1148
- < p class ="optical-sizing "> This paragraph should forbid the browser to enable optical sizing i.e. contrast of strokes and serifs.</ p >
1160
+ < p class ="optical-sizing-none "> This paragraph should forbid the browser to enable optical sizing i.e. contrast of strokes and serifs.</ p >
1149
1161
</ section >
1150
1162
</ section >
1151
1163
</ main >
Original file line number Diff line number Diff line change @@ -15,4 +15,5 @@ httpServer.listen(httpPort, (err) => {
15
15
16
16
app . use ( "/tests" , express . static ( __dirname + "/tests" ) ) ;
17
17
app . use ( "/css/demo" , express . static ( __dirname + "/css/demo" ) ) ;
18
- app . use ( "/css/dist" , express . static ( __dirname + "/css/dist" ) ) ;
18
+ app . use ( "/css/dist" , express . static ( __dirname + "/css/dist" ) ) ;
19
+ app . use ( "/docs/utils" , express . static ( __dirname + "/docs/utils" ) ) ;
You can’t perform that action at this time.
0 commit comments