-
Notifications
You must be signed in to change notification settings - Fork 0
/
mferwind-demo.html
462 lines (410 loc) · 16.1 KB
/
mferwind-demo.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="mferwind.css">
<title>mferwind demo</title>
<style>
body {
background-color: gainsboro;
}
.demo-box {
margin-bottom: 15px;
border: 1px solid darkgrey;
min-height: 40px;
}
.border-demo-box {
margin-bottom: 15px;
min-height: 40px;
}
</style>
</head>
<body class="monospace m-xl p-xl">
<a href="./index.html">home</a>
<h1>mferwind classes demo</h1>
<p class="text-xs">See the full list of classes <a href="./mferwind-docs.html">here</a>.</p>
<h2 class="mt-xl mb-s">Background Color Classes</h2>
<div id="bgColorDiv" class="bricked-up">
<div class="demo-box bg-blue">.bg-blue</div>
<div class="demo-box bg-green">.bg-green</div>
<div class="demo-box bg-red">.bg-red</div>
<div class="demo-box bg-yellow">.bg-yellow</div>
<div class="demo-box bg-orange">.bg-orange</div>
<div class="demo-box bg-graveyard">.bg-graveyard</div>
<div class="demo-box bg-space">.bg-space</div>
<div class="demo-box bg-white">.bg-white</div>
<div class="demo-box bg-black text-white">.bg-black</div>
</div>
<h2 class="mt-xl mb-s">Font Face Classes</h2>
<div id="fontFaceDiv" class="bricked-up">
<div class=" demo-box sartoshi text-l">.sartoshi</div>
<div class=" demo-box monospace text-s">.monospace</div>
<div class="demo-box script text-l">.script</div>
</div>
<h2 class="mt-xl mb-s">Font Style Classes</h2>
<div class=" demo-box monospace italic">.italic</div>
<h2 class="mt-xl mb-s">Font Weight Classes</h2>
<div class=" demo-box monospace bold">.bold</div>
<h2 class="mt-xl mb-s">Text Size Classes</h2>
<div id="textSizeDiv" class="bricked-up">
<div class=" demo-box text-xs">.text-xs</div>
<div class=" demo-box text-s">.text-s</div>
<div class=" demo-box text-m">.text-m</div>
<div class=" demo-box text-l">.text-l</div>
<div class=" demo-box text-xl">.text-xl</div>
</div>
<h2 class="mt-xl mb-s">Text Color Classes</h2>
<div id="textColorDiv" class="bricked-up">
<div class="demo-box text-blue">.text-blue</div>
<div class="demo-box text-green">.text-green</div>
<div class="demo-box text-red">.text-red</div>
<div class="demo-box text-yellow">.text-yellow</div>
<div class="demo-box text-orange">.text-orange</div>
<div class="demo-box text-graveyard">.text-graveyard</div>
<div class="demo-box text-space">.text-space</div>
<div class="demo-box text-black">.text-black</div>
<div class="demo-box text-white">.text-white</div>
</div>
<h2 class="mt-xl mb-s">Text Decoration Classes</h2>
<div id="textDecorationDiv" class="bricked-up">
<div class="demo-box underline-black">
<p>.underline-black</p>
</div>
<div class="demo-box underline-black-wavy">
<p>.underline-black-wavy</p>
</div>
<div class="demo-box underline-blue">
<p>.underline-blue</p>
</div>
<div class="demo-box underline-blue-wavy">
<p>.underline-blue-wavy</p>
</div>
<div class="demo-box underline-green">
<p>.underline-green</p>
</div>
<div class="demo-box underline-green-wavy">
<p>.underline-green-wavy</p>
</div>
<div class="demo-box underline-red">
<p>.underline-red</p>
</div>
<div class="demo-box underline-red-wavy">
<p>.underline-red-wavy</p>
</div>
<div class="demo-box underline-yellow">
<p>.underline-yellow</p>
</div>
<div class="demo-box underline-yellow-wavy">
<p>.underline-yellow-wavy</p>
</div>
<div class="demo-box underline-orange">
<p>.underline-orange</p>
</div>
<div class="demo-box underline-orange-wavy">
<p>.underline-orange-wavy</p>
</div>
<div class="demo-box underline-graveyard">
<p>.underline-graveyard</p>
</div>
<div class="demo-box underline-graveyard-wavy">
<p>.underline-graveyard-wavy</p>
</div>
<div class="demo-box underline-space">
<p>.underline-space</p>
</div>
<div class="demo-box underline-space-wavy">
<p>.underline-space-wavy</p>
</div>
<div class="demo-box underline-white">
<p>.underline-white</p>
</div>
<div class="demo-box underline-white-wavy">
<p>.underline-white-wavy</p>
</div>
</div>
<h2 class="mt-xl mb-s">Button Component Classes</h2>
<div id="buttonsDiv" class="bricked-up">
<button class="button">.button</button>
<button class="button button-blue">.button button-blue</button>
<button class="button button-green">.button button-green</button>
<button class="button button-red">.button button-red</button>
<button class="button button-yellow">.button button-yellow</button>
<button class="button button-orange">.button button-orange</button>
<button class="button button-graveyard">.button button-graveyard</button>
<button class="button button-space">.button button-space</button>
<button class="button button-black text-white">.button button-black</button>
<button class="button button-white">.button button-white</button>
<button class="button button-rainbow">.button button-rainbow</button>
</div>
<h2 class="mt-xl mb-s">Flex, & Justification Classes</h2>
<div class="demo-box flex flex-r between">
<p>.flex flex-r</p>
<p>.between</p>
</div>
<div class="demo-box flex flex-r around">
<p>.flex flex-r</p>
<p>.around</p>
</div>
<div class="demo-box flex flex-r evenly">
<p>.flex flex-r</p>
<p>.evenly</p>
</div>
<div class="demo-box flex flex-c">
<p>.flex flex-c</p>
<p>makes a column</p>
</div>
<h2 class="mt-xl mb-s">Grid Classes</h2>
<p class="text-xs">* mferwind css currently uses a responsive auto-fill and auto-size grid layout, with more
granular grid control to come.</p>
<div class="bricked-up mb-xl">
<div>.bricked-up</div>
<div>item</div>
<div>item</div>
<div>item</div>
<div>item</div>
<div>item</div>
</div>
<div class="bricked-up bricked-up-blue my-xl">
<div>.bricked-up</div>
<div>bricked-up-blue</div>
<div>item</div>
<div>item</div>
<div>item</div>
<div>item</div>
</div>
<div class="bricked-up bricked-up-green my-xl">
<div>.bricked-up</div>
<div>bricked-up-green</div>
<div>item</div>
<div>item</div>
<div>item</div>
<div>item</div>
</div>
<div class="bricked-up bricked-up-red my-xl">
<div>.bricked-up</div>
<div>bricked-up-red</div>
<div>item</div>
<div>item</div>
<div>item</div>
<div>item</div>
</div>
<div class="bricked-up bricked-up-yellow my-xl">
<div>.bricked-up</div>
<div>bricked-up-yellow</div>
<div>item</div>
<div>item</div>
<div>item</div>
<div>item</div>
</div>
<div class="bricked-up bricked-up-orange my-xl">
<div>.bricked-up</div>
<div>bricked-up-orange</div>
<div>item</div>
<div>item</div>
<div>item</div>
<div>item</div>
</div>
<div class="bricked-up bricked-up-graveyard my-xl">
<div>.bricked-up</div>
<div>bricked-up-graveyard</div>
<div>item</div>
<div>item</div>
<div>item</div>
<div>item</div>
</div>
<div class="bricked-up bricked-up-black my-xl">
<div>.bricked-up</div>
<div>bricked-up-black</div>
<div>item</div>
<div>item</div>
<div>item</div>
<div>item</div>
</div>
<div class="bricked-up bricked-up-white my-xl">
<div>.bricked-up</div>
<div>bricked-up-white</div>
<div>item</div>
<div>item</div>
<div>item</div>
<div>item</div>
</div>
<h2 class="mt-xl mb-s">Text Alignment Classes</h2>
<div class="demo-box text-right">.text-right</div>
<div class="demo-box text-left">.text-left</div>
<div class="demo-box text-center">.text-center</div>
<h2 class="mt-xl mb-s">Item Alignment Classes</h2>
<div class="demo-box flex flex-c items-start">
<p>.items-start</p>
<img src="7332.png" width="50">
</div>
<div class="demo-box flex flex-c items-end">
<p>.items-end</p>
<img src="7332.png" width="50">
</div>
<div class="demo-box flex flex-c items-center">
<p>.items-center</p>
<img src="7332.png" width="50">
</div>
<h2 class="mt-xl mb-s">Margin Classes</h2>
<div class="demo-box m-0">.m-0</div>
<div class="demo-box m-s">.m-s</div>
<div class="demo-box m-m">.m-m</div>
<div class="demo-box m-l">.m-l</div>
<h2 class="mt-xl mb-s">Padding Classes</h2>
<div class="demo-box p-0">.p-0</div>
<div class="demo-box p-s">.p-s</div>
<div class="demo-box p-m">.p-m</div>
<div class="demo-box p-l">.p-l</div>
<div class="demo-box p-xl">.p-xl</div>
<h2 class="mt-xl mb-s">Border Classes</h2>
<div id="radiusDemo" class="flex flex-r between mb-l">
<div class="border-demo-box text-center flex flex-c">
<p class="mb-0">.radius-s</p>
<img src="./7332.png" width="75" class="radius-s ml-l border-black solid border-xs">
</div>
<div class="border-demo-box text-center flex flex-c">
<p class="mb-0">.radius-m</p>
<img src="./7332.png" width="75" class="radius-m ml-l border-black solid border-xs">
</div>
<div class="border-demo-box text-center flex flex-c">
<p class="mb-0">.radius-l</p>
<img src="./7332.png" width="75" class="radius-l ml-l border-black solid border-xs">
</div>
<div class="border-demo-box text-center flex flex-c">
<p class="mb-0">.radius-spicy</p>
<img src="./7332.png" width="75" class="radius-spicy ml-l border-black solid border-xs">
</div>
<div class="border-demo-box text-center flex flex-c">
<p class="mb-0">.radius-round</p>
<img src="./7332.png" width="75" class="radius-round ml-l border-black solid border-xs">
</div>
</div>
<div id="borderStyesDiv" class="bricked-up">
<div class="border-demo-box border-xs border-black solid">.border-xs border-black solid</div>
<div class="border-demo-box border-s border-blue dotted">.border-s border-blue dotted</div>
<div class="border-demo-box border-m border-green dashed">.border-m border-green dashed</div>
<div class="border-demo-box border-l border-yellow double">.border-l border-yellow double</div>
<div class="border-demo-box border-xl border-orange groove">.border-xl border-orange groove</div>
<div class="border-demo-box border-xl border-graveyard ridge">.border-xl border-graveyard ridge</div>
<div class="border-demo-box border-xl border-red inset">.border-xl border-red inset</div>
<div class="border-demo-box border-xl border-white outset">.border-xl border-white outset</div>
<div class="border-demo-box border-m border-space solid">.border-m border-space solid</div>
</div>
<h2 class="mt-xl mb-s">Animation Classes</h2>
<div id="animationDiv" class="bricked-up">
<div class="border-demo-box flex flex-c">
<p>.rotate</p>
<img src="./7332.png" alt="mfer 7332" width="75" class="rotate ml-l">
</div>
<div class="border-demo-box flex flex-c">
<p>.pulse</p>
<img src="./7332.png" alt="mfer 7332" width="75" class="pulse ml-l">
</div>
<div class="border-demo-box flex flex-c">
<p>.shimmer</p>
<img src="./7332.png" alt="mfer 7332" width="75" class="shimmer ml-l">
</div>
<div class="border-demo-box flex flex-c">
<p>.bounce</p>
<img src="./7332.png" alt="mfer 7332" width="75" class="bounce ml-l">
</div>
<div class="border-demo-box flex flex-c">
<p class="my-0">.fade-in</p>
<p class="my-0">(looped for demo)</p>
<img src="./7332.png" alt="mfer 7332" width="75" class="fade-in ml-l"
style="animation-iteration-count: infinite;">
</div>
<div class="border-demo-box flex flex-c">
<p class="my-0">.slide-in</p>
<p class="my-0">(looped for demo)</p>
<img src="./7332.png" alt="mfer 7332" width="75" class="slide-in ml-l"
style="animation-iteration-count: infinite;">
</div>
</div>
<h2 class="mt-xl mb-s">Appearance Manipulation Classes</h2>
<h4>Opacity</h4>
<div id="opacityDiv" class="bricked-up">
<figure>
<legend class="text-xs">original</legend>
<img src="./7332.png" alt="mfer 7332" width="75">
</figure>
<figure>
<legend class="text-xs">.opacity-half</legend>
<img src="./7332.png" alt="mfer 7332" width="75" class="opacity-half">
</figure>
<figure>
<legend class="text-xs">.invisible</legend>
<img src="./7332.png" alt="mfer 7332" width="75" class="invisible">
</figure>
</div>
<h4>Invert</h4>
<div id="invertDiv" class="bricked-up">
<figure>
<legend class="text-xs">original</legend>
<img src="./7332.png" alt="mfer 7332" width="75">
</figure>
<figure>
<legend class="text-xs">.invert</legend>
<img src="./7332.png" alt="mfer 7332" width="75" class="invert">
</figure>
</div>
<h4>Black & White</h4>
<div id="bwDiv" class="bricked-up">
<figure>
<legend class="text-xs">original</legend>
<img src="./7332.png" alt="mfer 7332" width="75">
</figure>
<figure>
<legend class="text-xs">.bw-half</legend>
<img src="./7332.png" alt="mfer 7332" width="75" class="bw-half">
</figure>
<figure>
<legend class="text-xs">.bw</legend>
<img src="./7332.png" alt="mfer 7332" width="75" class="bw">
</figure>
</div>
<h4>Sepia</h4>
<div id="sepiaDiv" class="bricked-up">
<figure>
<legend class="text-xs">original</legend>
<img src="./7332.png" alt="mfer 7332" width="75">
</figure>
<figure>
<legend class="text-xs">.sepia-half</legend>
<img src="./7332.png" alt="mfer 7332" width="75" class="sepia-half">
</figure>
<figure>
<legend class="text-xs">.sepia</legend>
<img src="./7332.png" alt="mfer 7332" width="75" class="sepia">
</figure>
</div>
<h4>Blur</h4>
<div id="blurDiv" class="bricked-up">
<figure>
<legend class="text-xs">original</legend>
<img src="./7332.png" alt="mfer 7332" width="75">
</figure>
<figure>
<legend class="text-xs">.blur-xs</legend>
<img src="./7332.png" alt="mfer 7332" width="75" class="blur-xs">
</figure>
<figure>
<legend class="text-xs">.blur-s</legend>
<img src="./7332.png" alt="mfer 7332" width="75" class="blur-s">
</figure>
<figure>
<legend class="text-xs">.blur-m</legend>
<img src="./7332.png" alt="mfer 7332" width="75" class="blur-m">
</figure>
<figure>
<legend class="text-xs">.blur-l</legend>
<img src="./7332.png" alt="mfer 7332" width="75" class="blur-l">
</figure>
<figure>
<legend class="text-xs">.blur-xl</legend>
<img src="./7332.png" alt="mfer 7332" width="75" class="blur-xl">
</figure>
</div>
</body>
</html>