real-world-css-libraries 1.0.3 → 1.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. package/README.md +36 -1
  2. package/index.js +36 -6
  3. package/libs/30days30submits-18-v0.0.0.css +213 -0
  4. package/libs/amoled-cord-v5.0.11.css +894 -0
  5. package/libs/animating-hamburger-icons-v0.1.0.css +618 -0
  6. package/libs/bootplus-v1.0.5.css +6876 -0
  7. package/libs/enferno-v13.1.1.css +75 -0
  8. package/libs/facebook-buttons-v1.0.0.css +223 -0
  9. package/libs/fluentbird-v1.1.2.css +1060 -0
  10. package/libs/freebies-v0.0.0.css +1110 -0
  11. package/libs/gitweb-theme-v0.0.0.css +764 -0
  12. package/libs/justified-v0.0.0.css +14 -0
  13. package/libs/kickoff-v8.0.0.css +2267 -0
  14. package/libs/knacss-v8.2.0.css +1141 -0
  15. package/libs/linktree-v0.0.0.css +803 -0
  16. package/libs/littlebox-v0.0.4.css +5833 -0
  17. package/libs/lynx-v1.4.0.css +1587 -0
  18. package/libs/obnoxious-v3.5.2.css +1144 -0
  19. package/libs/obsidian-notebook-themes-v2.2.3.css +272 -0
  20. package/libs/patternbolt-v0.0.0.css +861 -0
  21. package/libs/progress-tracker-v3.0.0.css +352 -0
  22. package/libs/proxmorph-v2.7.3.css +3952 -0
  23. package/libs/sapc-apca-v0.0.0.css +5546 -0
  24. package/libs/shina-fox-v0.1.0.css +1194 -0
  25. package/libs/social-signin-buttons-v0.0.0.css +387 -0
  26. package/libs/tailwind-cards-v0.0.0.css +215592 -0
  27. package/libs/the-50-front-end-project-44-v0.0.0.css +459 -0
  28. package/libs/tocas-v5.7.0.css +19928 -0
  29. package/libs/utility-opentype-v0.1.4.css +515 -0
  30. package/libs/vim-css3-syntax-v2.10.0.css +1642 -0
  31. package/libs/waffle-grid-v1.3.6.css +544 -0
  32. package/libs/wikipedia-dark-v3.7.9.css +9990 -0
  33. package/libs/windows-95-v0.0.0.css +393 -0
  34. package/libs/woah-v1.3.1.css +1025 -0
  35. package/libs/yacy-v4.1.2.css +677 -0
  36. package/libs/yue-v1.1.1.css +180 -0
  37. package/package.json +1 -1
  38. package/test.js +3 -4
@@ -0,0 +1,544 @@
1
+ /* https://github.com/pr1mer-tech/waffle-grid/blob/master/dist/waffle-grid.css */
2
+ /*!
3
+ * waffle-grid - v1.3.6 - (https://lucasgruwez.github.io/waffle-grid)
4
+ * Copyright 2017 Lucas Gruwez.
5
+ * Licensed under MIT
6
+ * https://lucasgruwez.github.io/waffle-grid
7
+ */.container,.grid {
8
+ width: 960px;
9
+ max-width: 80%;
10
+ margin: 0 auto;
11
+ }
12
+
13
+ .grid,.row {
14
+ display: -webkit-box;
15
+ display: -ms-flexbox;
16
+ display: flex;
17
+ }
18
+
19
+ .grid {
20
+ -webkit-box-orient: vertical;
21
+ -webkit-box-direction: normal;
22
+ -ms-flex-direction: column;
23
+ flex-direction: column;
24
+ }
25
+
26
+ .grid.full-width {
27
+ width: 100%;
28
+ max-width: 100%;
29
+ }
30
+
31
+ .row {
32
+ -webkit-box-orient: horizontal;
33
+ -webkit-box-direction: normal;
34
+ -ms-flex-direction: row;
35
+ flex-direction: row;
36
+ width: 100%;
37
+ -ms-flex-wrap: wrap;
38
+ flex-wrap: wrap;
39
+ }
40
+
41
+ .col {
42
+ -webkit-box-sizing: border-box;
43
+ box-sizing: border-box;
44
+ margin: 10px;
45
+ vertical-align: top;
46
+ }
47
+
48
+ .center,.left {
49
+ margin-right: auto;
50
+ }
51
+
52
+ .center,.right {
53
+ margin-left: auto;
54
+ }
55
+
56
+ .w-auto {
57
+ -webkit-box-flex: 1;
58
+ -ms-flex: 1;
59
+ flex: 1;
60
+ }
61
+
62
+ .col-1-of-4,.col-2-of-8,.col-3-of-12 {
63
+ width: calc(25% - 20px);
64
+ }
65
+
66
+ .push-1-of-4,.push-2-of-8,.push-3-of-12 {
67
+ margin-left: calc(25% + 20px / 2);
68
+ }
69
+
70
+ .pull-1-of-4,.pull-2-of-8,.pull-3-of-12 {
71
+ margin-right: calc(25% + 20px / 2);
72
+ }
73
+
74
+ .col-2-of-4,.col-4-of-8,.col-6-of-12 {
75
+ width: calc(50% - 20px);
76
+ }
77
+
78
+ .push-2-of-4,.push-4-of-8,.push-6-of-12 {
79
+ margin-left: calc(50% + 20px / 2);
80
+ }
81
+
82
+ .pull-2-of-4,.pull-4-of-8,.pull-6-of-12 {
83
+ margin-right: calc(50% + 20px / 2);
84
+ }
85
+
86
+ .col-3-of-4,.col-6-of-8,.col-9-of-12 {
87
+ width: calc(75% - 20px);
88
+ }
89
+
90
+ .push-3-of-4,.push-6-of-8,.push-9-of-12 {
91
+ margin-left: calc(75% + 20px / 2);
92
+ }
93
+
94
+ .pull-3-of-4,.pull-6-of-8,.pull-9-of-12 {
95
+ margin-right: calc(75% + 20px / 2);
96
+ }
97
+
98
+ .col-12-of-12,.col-4-of-4,.col-8-of-8 {
99
+ width: calc(100% - 20px);
100
+ }
101
+
102
+ .push-12-of-12,.push-4-of-4,.push-8-of-8 {
103
+ margin-left: calc(100% + 20px / 2);
104
+ }
105
+
106
+ .pull-12-of-12,.pull-4-of-4,.pull-8-of-8 {
107
+ margin-right: calc(100% + 20px / 2);
108
+ }
109
+
110
+ .col-1-of-8 {
111
+ width: calc(12.5% - 20px);
112
+ }
113
+
114
+ .push-1-of-8 {
115
+ margin-left: calc(12.5% + 20px / 2);
116
+ }
117
+
118
+ .pull-1-of-8 {
119
+ margin-right: calc(12.5% + 20px / 2);
120
+ }
121
+
122
+ .col-3-of-8 {
123
+ width: calc(37.5% - 20px);
124
+ }
125
+
126
+ .push-3-of-8 {
127
+ margin-left: calc(37.5% + 20px / 2);
128
+ }
129
+
130
+ .pull-3-of-8 {
131
+ margin-right: calc(37.5% + 20px / 2);
132
+ }
133
+
134
+ .col-5-of-8 {
135
+ width: calc(62.5% - 20px);
136
+ }
137
+
138
+ .push-5-of-8 {
139
+ margin-left: calc(62.5% + 20px / 2);
140
+ }
141
+
142
+ .pull-5-of-8 {
143
+ margin-right: calc(62.5% + 20px / 2);
144
+ }
145
+
146
+ .col-7-of-8 {
147
+ width: calc(87.5% - 20px);
148
+ }
149
+
150
+ .push-7-of-8 {
151
+ margin-left: calc(87.5% + 20px / 2);
152
+ }
153
+
154
+ .pull-7-of-8 {
155
+ margin-right: calc(87.5% + 20px / 2);
156
+ }
157
+
158
+ .col-1-of-12 {
159
+ width: calc(8.33333% - 20px);
160
+ }
161
+
162
+ .push-1-of-12 {
163
+ margin-left: calc(8.33333% + 20px / 2);
164
+ }
165
+
166
+ .pull-1-of-12 {
167
+ margin-right: calc(8.33333% + 20px / 2);
168
+ }
169
+
170
+ .col-2-of-12 {
171
+ width: calc(16.66667% - 20px);
172
+ }
173
+
174
+ .push-2-of-12 {
175
+ margin-left: calc(16.66667% + 20px / 2);
176
+ }
177
+
178
+ .pull-2-of-12 {
179
+ margin-right: calc(16.66667% + 20px / 2);
180
+ }
181
+
182
+ .col-4-of-12 {
183
+ width: calc(33.33333% - 20px);
184
+ }
185
+
186
+ .push-4-of-12 {
187
+ margin-left: calc(33.33333% + 20px / 2);
188
+ }
189
+
190
+ .pull-4-of-12 {
191
+ margin-right: calc(33.33333% + 20px / 2);
192
+ }
193
+
194
+ .col-5-of-12 {
195
+ width: calc(41.66667% - 20px);
196
+ }
197
+
198
+ .push-5-of-12 {
199
+ margin-left: calc(41.66667% + 20px / 2);
200
+ }
201
+
202
+ .pull-5-of-12 {
203
+ margin-right: calc(41.66667% + 20px / 2);
204
+ }
205
+
206
+ .col-7-of-12 {
207
+ width: calc(58.33333% - 20px);
208
+ }
209
+
210
+ .push-7-of-12 {
211
+ margin-left: calc(58.33333% + 20px / 2);
212
+ }
213
+
214
+ .pull-7-of-12 {
215
+ margin-right: calc(58.33333% + 20px / 2);
216
+ }
217
+
218
+ .col-8-of-12 {
219
+ width: calc(66.66667% - 20px);
220
+ }
221
+
222
+ .push-8-of-12 {
223
+ margin-left: calc(66.66667% + 20px / 2);
224
+ }
225
+
226
+ .pull-8-of-12 {
227
+ margin-right: calc(66.66667% + 20px / 2);
228
+ }
229
+
230
+ .col-10-of-12 {
231
+ width: calc(83.33333% - 20px);
232
+ }
233
+
234
+ .push-10-of-12 {
235
+ margin-left: calc(83.33333% + 20px / 2);
236
+ }
237
+
238
+ .pull-10-of-12 {
239
+ margin-right: calc(83.33333% + 20px / 2);
240
+ }
241
+
242
+ .col-11-of-12 {
243
+ width: calc(91.66667% - 20px);
244
+ }
245
+
246
+ .push-11-of-12 {
247
+ margin-left: calc(91.66667% + 20px / 2);
248
+ }
249
+
250
+ .pull-11-of-12 {
251
+ margin-right: calc(91.66667% + 20px / 2);
252
+ }
253
+
254
+ @media (max-width:840px) {
255
+ .m-hide {
256
+ display: none;
257
+ }
258
+
259
+ .w-m-auto {
260
+ -webkit-box-flex: 1;
261
+ -ms-flex: 1;
262
+ flex: 1;
263
+ }
264
+
265
+ .m-un-push {
266
+ margin-left: 10px;
267
+ }
268
+
269
+ .m-un-pull {
270
+ margin-right: 10px;
271
+ }
272
+
273
+ .col-m-1-of-4,.col-m-2-of-8 {
274
+ width: calc(25% - 20px);
275
+ }
276
+
277
+ .push-m-1-of-4,.push-m-2-of-8 {
278
+ margin-left: calc(25% + 20px / 2);
279
+ }
280
+
281
+ .pull-m-1-of-4,.pull-m-2-of-8 {
282
+ margin-right: calc(25% + 20px / 2);
283
+ }
284
+
285
+ .col-m-2-of-4,.col-m-3-of-6,.col-m-4-of-8 {
286
+ width: calc(50% - 20px);
287
+ }
288
+
289
+ .push-m-2-of-4,.push-m-3-of-6,.push-m-4-of-8 {
290
+ margin-left: calc(50% + 20px / 2);
291
+ }
292
+
293
+ .pull-m-2-of-4,.pull-m-3-of-6,.pull-m-4-of-8 {
294
+ margin-right: calc(50% + 20px / 2);
295
+ }
296
+
297
+ .col-m-3-of-4,.col-m-6-of-8 {
298
+ width: calc(75% - 20px);
299
+ }
300
+
301
+ .push-m-3-of-4,.push-m-6-of-8 {
302
+ margin-left: calc(75% + 20px / 2);
303
+ }
304
+
305
+ .pull-m-3-of-4,.pull-m-6-of-8 {
306
+ margin-right: calc(75% + 20px / 2);
307
+ }
308
+
309
+ .col-m-4-of-4,.col-m-6-of-6,.col-m-8-of-8 {
310
+ width: calc(100% - 20px);
311
+ }
312
+
313
+ .push-m-4-of-4,.push-m-6-of-6,.push-m-8-of-8 {
314
+ margin-left: calc(100% + 20px / 2);
315
+ }
316
+
317
+ .pull-m-4-of-4,.pull-m-6-of-6,.pull-m-8-of-8 {
318
+ margin-right: calc(100% + 20px / 2);
319
+ }
320
+
321
+ .col-m-1-of-6 {
322
+ width: calc(16.66667% - 20px);
323
+ }
324
+
325
+ .push-m-1-of-6 {
326
+ margin-left: calc(16.66667% + 20px / 2);
327
+ }
328
+
329
+ .pull-m-1-of-6 {
330
+ margin-right: calc(16.66667% + 20px / 2);
331
+ }
332
+
333
+ .col-m-2-of-6 {
334
+ width: calc(33.33333% - 20px);
335
+ }
336
+
337
+ .push-m-2-of-6 {
338
+ margin-left: calc(33.33333% + 20px / 2);
339
+ }
340
+
341
+ .pull-m-2-of-6 {
342
+ margin-right: calc(33.33333% + 20px / 2);
343
+ }
344
+
345
+ .col-m-4-of-6 {
346
+ width: calc(66.66667% - 20px);
347
+ }
348
+
349
+ .push-m-4-of-6 {
350
+ margin-left: calc(66.66667% + 20px / 2);
351
+ }
352
+
353
+ .pull-m-4-of-6 {
354
+ margin-right: calc(66.66667% + 20px / 2);
355
+ }
356
+
357
+ .col-m-5-of-6 {
358
+ width: calc(83.33333% - 20px);
359
+ }
360
+
361
+ .push-m-5-of-6 {
362
+ margin-left: calc(83.33333% + 20px / 2);
363
+ }
364
+
365
+ .pull-m-5-of-6 {
366
+ margin-right: calc(83.33333% + 20px / 2);
367
+ }
368
+
369
+ .col-m-1-of-8 {
370
+ width: calc(12.5% - 20px);
371
+ }
372
+
373
+ .push-m-1-of-8 {
374
+ margin-left: calc(12.5% + 20px / 2);
375
+ }
376
+
377
+ .pull-m-1-of-8 {
378
+ margin-right: calc(12.5% + 20px / 2);
379
+ }
380
+
381
+ .col-m-3-of-8 {
382
+ width: calc(37.5% - 20px);
383
+ }
384
+
385
+ .push-m-3-of-8 {
386
+ margin-left: calc(37.5% + 20px / 2);
387
+ }
388
+
389
+ .pull-m-3-of-8 {
390
+ margin-right: calc(37.5% + 20px / 2);
391
+ }
392
+
393
+ .col-m-5-of-8 {
394
+ width: calc(62.5% - 20px);
395
+ }
396
+
397
+ .push-m-5-of-8 {
398
+ margin-left: calc(62.5% + 20px / 2);
399
+ }
400
+
401
+ .pull-m-5-of-8 {
402
+ margin-right: calc(62.5% + 20px / 2);
403
+ }
404
+
405
+ .col-m-7-of-8 {
406
+ width: calc(87.5% - 20px);
407
+ }
408
+
409
+ .push-m-7-of-8 {
410
+ margin-left: calc(87.5% + 20px / 2);
411
+ }
412
+
413
+ .pull-m-7-of-8 {
414
+ margin-right: calc(87.5% + 20px / 2);
415
+ }
416
+ }
417
+
418
+ @media (max-width:480px) {
419
+ .s-hide {
420
+ display: none;
421
+ }
422
+
423
+ .w-s-auto {
424
+ -webkit-box-flex: 1;
425
+ -ms-flex: 1;
426
+ flex: 1;
427
+ }
428
+
429
+ .s-un-push {
430
+ margin-left: 10px;
431
+ }
432
+
433
+ .s-un-pull {
434
+ margin-right: 10px;
435
+ }
436
+
437
+ .col-s-1-of-4 {
438
+ width: calc(25% - 20px);
439
+ }
440
+
441
+ .push-s-1-of-4 {
442
+ margin-left: calc(25% + 20px / 2);
443
+ }
444
+
445
+ .pull-s-1-of-4 {
446
+ margin-right: calc(25% + 20px / 2);
447
+ }
448
+
449
+ .col-s-2-of-4,.col-s-3-of-6 {
450
+ width: calc(50% - 20px);
451
+ }
452
+
453
+ .push-s-2-of-4,.push-s-3-of-6 {
454
+ margin-left: calc(50% + 20px / 2);
455
+ }
456
+
457
+ .pull-s-2-of-4,.pull-s-3-of-6 {
458
+ margin-right: calc(50% + 20px / 2);
459
+ }
460
+
461
+ .col-s-3-of-4 {
462
+ width: calc(75% - 20px);
463
+ }
464
+
465
+ .push-s-3-of-4 {
466
+ margin-left: calc(75% + 20px / 2);
467
+ }
468
+
469
+ .pull-s-3-of-4 {
470
+ margin-right: calc(75% + 20px / 2);
471
+ }
472
+
473
+ .col-s-4-of-4,.col-s-6-of-6 {
474
+ width: calc(100% - 20px);
475
+ }
476
+
477
+ .push-s-4-of-4,.push-s-6-of-6 {
478
+ margin-left: calc(100% + 20px / 2);
479
+ }
480
+
481
+ .pull-s-4-of-4,.pull-s-6-of-6 {
482
+ margin-right: calc(100% + 20px / 2);
483
+ }
484
+
485
+ .col-s-1-of-6 {
486
+ width: calc(16.66667% - 20px);
487
+ }
488
+
489
+ .push-s-1-of-6 {
490
+ margin-left: calc(16.66667% + 20px / 2);
491
+ }
492
+
493
+ .pull-s-1-of-6 {
494
+ margin-right: calc(16.66667% + 20px / 2);
495
+ }
496
+
497
+ .col-s-2-of-6 {
498
+ width: calc(33.33333% - 20px);
499
+ }
500
+
501
+ .push-s-2-of-6 {
502
+ margin-left: calc(33.33333% + 20px / 2);
503
+ }
504
+
505
+ .pull-s-2-of-6 {
506
+ margin-right: calc(33.33333% + 20px / 2);
507
+ }
508
+
509
+ .col-s-4-of-6 {
510
+ width: calc(66.66667% - 20px);
511
+ }
512
+
513
+ .push-s-4-of-6 {
514
+ margin-left: calc(66.66667% + 20px / 2);
515
+ }
516
+
517
+ .pull-s-4-of-6 {
518
+ margin-right: calc(66.66667% + 20px / 2);
519
+ }
520
+
521
+ .col-s-5-of-6 {
522
+ width: calc(83.33333% - 20px);
523
+ }
524
+
525
+ .push-s-5-of-6 {
526
+ margin-left: calc(83.33333% + 20px / 2);
527
+ }
528
+
529
+ .pull-s-5-of-6 {
530
+ margin-right: calc(83.33333% + 20px / 2);
531
+ }
532
+ }
533
+
534
+ @media (min-width:480px) {
535
+ .s-and-lower {
536
+ display: none;
537
+ }
538
+ }
539
+
540
+ @media (min-width:840px) {
541
+ .m-and-lower {
542
+ display: none;
543
+ }
544
+ }