real-world-css-libraries 1.0.3 → 1.0.5

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 (40) hide show
  1. package/README.md +38 -3
  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
  39. /package/libs/{responsive-v4.1.4.css → responsive-4-v4.1.4.css} +0 -0
  40. /package/libs/{responsive-v5.0.0.css → responsive-5-v5.0.0.css} +0 -0
@@ -0,0 +1,387 @@
1
+ /* https://github.com/necolas/css3-social-signin-buttons/blob/gh-pages/auth-buttons.css */
2
+ /**
3
+ * Button Object
4
+ */
5
+
6
+ /**
7
+ * 1. Corrects inability to style clickable 'input' types in iOS
8
+ * 2. Remove excess padding in IE6/7
9
+ * 3. IE6/7 inline-block hack for native block-level elements
10
+ */
11
+
12
+ .btn-auth,
13
+ .btn-auth:visited {
14
+ position: relative;
15
+ display: inline-block;
16
+ height: 22px;
17
+ padding: 0 1em;
18
+ border: 1px solid #999;
19
+ border-radius: 2px;
20
+ margin: 0;
21
+ text-align: center;
22
+ text-decoration: none;
23
+ font-size: 14px;
24
+ line-height: 22px;
25
+ white-space: nowrap;
26
+ cursor: pointer;
27
+ color: #222;
28
+ background: #fff;
29
+ -webkit-box-sizing: content-box;
30
+ -moz-box-sizing: content-box;
31
+ box-sizing: content-box;
32
+ -webkit-user-select: none;
33
+ -moz-user-select: none;
34
+ -ms-user-select: none;
35
+ user-select: none;
36
+ /* iOS */
37
+ -webkit-appearance: none; /* 1 */
38
+ /* IE6/7 hacks */
39
+ *overflow: visible; /* 2 */
40
+ *display: inline; /* 3 */
41
+ *zoom: 1; /* 3 */
42
+ }
43
+
44
+ .btn-auth:hover,
45
+ .btn-auth:focus,
46
+ .btn-auth:active {
47
+ color: #222;
48
+ text-decoration: none;
49
+ }
50
+
51
+ .btn-auth:before {
52
+ content: "";
53
+ float: left;
54
+ width: 22px;
55
+ height: 22px;
56
+ background: url(auth-icons.png) no-repeat 99px 99px;
57
+ }
58
+
59
+ /**
60
+ * 36px
61
+ */
62
+
63
+ .btn-auth.large {
64
+ height: 36px;
65
+ line-height: 36px;
66
+ font-size: 20px;
67
+ }
68
+
69
+ .btn-auth.large:before {
70
+ width: 36px;
71
+ height: 36px;
72
+ }
73
+
74
+ /*
75
+ * Remove excess padding and border in FF3+
76
+ */
77
+
78
+ .btn-auth::-moz-focus-inner {
79
+ border: 0;
80
+ padding: 0;
81
+ }
82
+
83
+
84
+ /* Facebook (extends .btn-auth)
85
+ ========================================================================== */
86
+
87
+ .btn-facebook,
88
+ .btn-facebook:visited {
89
+ border-color: #29447e;
90
+ border-bottom-color: #1a356e;
91
+ color: #fff;
92
+ background-color: #5872a7;
93
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#637bad), to(#5872a7));
94
+ background-image: -webkit-linear-gradient(#637bad, #5872a7);
95
+ background-image: -moz-linear-gradient(#637bad, #5872a7);
96
+ background-image: -ms-linear-gradient(#637bad, #5872a7);
97
+ background-image: -o-linear-gradient(#637bad, #5872a7);
98
+ background-image: linear-gradient(#637bad, #5872a7);
99
+ -webkit-box-shadow: inset 0 1px 0 #879ac0;
100
+ box-shadow: inset 0 1px 0 #879ac0;
101
+ }
102
+
103
+ .btn-facebook:hover,
104
+ .btn-facebook:focus {
105
+ color: #fff;
106
+ background-color: #3b5998;
107
+ }
108
+
109
+ .btn-facebook:active {
110
+ color: #fff;
111
+ background: #4f6aa3;
112
+ -webkit-box-shadow: inset 0 1px 0 #45619d;
113
+ box-shadow: inset 0 1px 0 #45619d;
114
+ }
115
+
116
+ /*
117
+ * Icon
118
+ */
119
+
120
+ .btn-facebook:before {
121
+ border-right: 1px solid #465f94;
122
+ margin: 0 1em 0 -1em;
123
+ background-position: 0 0;
124
+ }
125
+
126
+ .btn-facebook.large:before {
127
+ background-position: 0 -22px;
128
+ }
129
+
130
+
131
+ /* GitHub
132
+ ========================================================================== */
133
+
134
+ .btn-github,
135
+ .btn-github:visited {
136
+ border-color: #d4d4d4;
137
+ background: #ececec;
138
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f4f4f4), to(#ececec));
139
+ background-image: -webkit-linear-gradient(#f4f4f4, #ececec);
140
+ background-image: -moz-linear-gradient(#f4f4f4, #ececec);
141
+ background-image: -ms-linear-gradient(#f4f4f4, #ececec);
142
+ background-image: -o-linear-gradient(#f4f4f4, #ececec);
143
+ background-image: linear-gradient(#f4f4f4, #ececec);
144
+ }
145
+
146
+ .btn-github:hover,
147
+ .btn-github:focus {
148
+ border-color: #518cc6;
149
+ border-bottom-color: #2a65a0;
150
+ color: #fff;
151
+ background-color: #599bdc;
152
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#599bdc), to(#3072b3));
153
+ background-image: -webkit-linear-gradient(#599bdc, #3072b3);
154
+ background-image: -moz-linear-gradient(#599bdc, #3072b3);
155
+ background-image: -ms-linear-gradient(#599bdc, #3072b3);
156
+ background-image: -o-linear-gradient(#599bdc, #3072b3);
157
+ background-image: linear-gradient(#599bdc, #3072b3);
158
+ }
159
+
160
+ .btn-github:active {
161
+ border-color: #2A65A0;
162
+ border-bottom-color: #518CC6;
163
+ color: #fff;
164
+ background: #3072B3;
165
+ background: -webkit-gradient(linear, 0 0, 0 100%, from(#3072b3), to(#599bdc));
166
+ background: -webkit-linear-gradient(#3072b3, #599bdc);
167
+ background: -moz-linear-gradient(#3072b3, #599bdc);
168
+ background: -ms-linear-gradient(#3072b3, #599bdc);
169
+ background: -o-linear-gradient(#3072b3, #599bdc);
170
+ background: linear-gradient(#3072b3, #599bdc);
171
+ }
172
+
173
+ /*
174
+ * Icon
175
+ */
176
+
177
+ .btn-github:before {
178
+ margin: 0 0.6em 0 -0.6em;
179
+ background-position: -44px 0;
180
+ }
181
+
182
+ .btn-github:hover:before,
183
+ .btn-github:focus:before,
184
+ .btn-github:active:before {
185
+ background-position: -66px 0;
186
+ }
187
+
188
+ .btn-github.large:before {
189
+ background-position: -72px -22px;
190
+ }
191
+
192
+ .btn-github.large:hover:before,
193
+ .btn-github.large:focus:before,
194
+ .btn-github.large:active:before {
195
+ background-position: -108px -22px;
196
+ }
197
+
198
+
199
+ /* Google
200
+ ========================================================================== */
201
+
202
+ .btn-google,
203
+ .btn-google:visited {
204
+ border-color: #3079ed;
205
+ color: #fff;
206
+ background: #4787ed;
207
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#4d90fe), to(#4787ed));
208
+ background-image: -webkit-linear-gradient(#4d90fe, #4787ed);
209
+ background-image: -moz-linear-gradient(#4d90fe, #4787ed);
210
+ background-image: -ms-linear-gradient(#4d90fe, #4787ed);
211
+ background-image: -o-linear-gradient(#4d90fe, #4787ed);
212
+ background-image: linear-gradient(#4d90fe, #4787ed);
213
+ }
214
+
215
+ .btn-google:hover,
216
+ .btn-google:focus,
217
+ .btn-google:active {
218
+ color: #fff;
219
+ background-color: #357ae8;
220
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#4d90fe), to(#357ae8));
221
+ background-image: -webkit-linear-gradient(#4d90fe, #357ae8);
222
+ background-image: -moz-linear-gradient(#4d90fe, #357ae8);
223
+ background-image: -ms-linear-gradient(#4d90fe, #357ae8);
224
+ background-image: -o-linear-gradient(#4d90fe, #357ae8);
225
+ background-image: linear-gradient(#4d90fe, #357ae8);
226
+ }
227
+
228
+ .btn-google:active {
229
+ -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
230
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
231
+ }
232
+
233
+ /*
234
+ * Icon
235
+ */
236
+
237
+ .btn-google:before {
238
+ margin: 0 1em 0 -1em;
239
+ background-position: -88px 0;
240
+ background-color: #e6e6e6;
241
+ }
242
+
243
+ .btn-google.large:before {
244
+ background-position: -144px -22px;
245
+ }
246
+
247
+
248
+ /* Open ID
249
+ ========================================================================== */
250
+
251
+ .btn-openid:hover,
252
+ .btn-openid:focus {
253
+ border-color: #777;
254
+ background: #fcfcfc;
255
+ }
256
+
257
+ .btn-openid:active {
258
+ background: #f5f5f5;
259
+ }
260
+
261
+ /*
262
+ * Icon
263
+ */
264
+
265
+ .btn-openid:before {
266
+ margin: 0 0.6em 0 -0.6em;
267
+ background-position: -154px 0;
268
+ }
269
+
270
+ .btn-openid.large:before {
271
+ background-position: -252px -22px;
272
+ }
273
+
274
+
275
+ /* Twitter
276
+ ========================================================================== */
277
+
278
+ .btn-twitter,
279
+ .btn-twitter:visited {
280
+ border-color: #a6cde6;
281
+ color: #327695;
282
+ background: #cfe4f0;
283
+ /* css3 */
284
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f1f5f7), to(rgba(255, 255, 255, 0)));
285
+ background-image: -webkit-linear-gradient(#f1f5f7, rgba(255, 255, 255, 0));
286
+ background-image: -moz-linear-gradient(#f1f5f7, rgba(255, 255, 255, 0));
287
+ background-image: -ms-linear-gradient(#f1f5f7, rgba(255, 255, 255, 0));
288
+ background-image: -o-linear-gradient(#f1f5f7, rgba(255, 255, 255, 0));
289
+ background-image: linear-gradient(#f1f5f7, rgba(255, 255, 255, 0));
290
+ -webkit-box-shadow: inset 0 1px 0 #fff;
291
+ box-shadow: inset 0 1px 0 #fff;
292
+ }
293
+
294
+ .btn-twitter:hover,
295
+ .btn-twitter:focus,
296
+ .btn-twitter:active {
297
+ color: #327695;
298
+ border-color: #8dc2e4;
299
+ background-color: #cadde9;
300
+ }
301
+
302
+ .btn-twitter:active {
303
+ background: #cadde9;
304
+ -webkit-box-shadow: inset 0 1px 0 #bbd6e7;
305
+ box-shadow: inset 0 1px 0 #bbd6e7;
306
+ }
307
+
308
+ /*
309
+ * Icon
310
+ */
311
+
312
+ .btn-twitter:before {
313
+ margin: 0 0.6em 0 -0.6em;
314
+ background-position: -22px 0;
315
+ }
316
+
317
+ .btn-twitter.large:before {
318
+ background-position: -36px -22px;
319
+ }
320
+
321
+
322
+ /* Windows Live ID
323
+ ========================================================================== */
324
+
325
+ .btn-windows:hover,
326
+ .btn-windows:focus {
327
+ border-color: #777;
328
+ background: #fcfcfc;
329
+ }
330
+
331
+ .btn-windows:active {
332
+ background: #f5f5f5;
333
+ }
334
+
335
+ /*
336
+ * Icon
337
+ */
338
+
339
+ .btn-windows:before {
340
+ margin: 0 0.6em 0 -0.6em;
341
+ background-position: -110px 0;
342
+ }
343
+
344
+ .btn-windows.large:before {
345
+ background-position: -180px -22px;
346
+ }
347
+
348
+
349
+ /* Yahoo!
350
+ ========================================================================== */
351
+
352
+ .btn-yahoo,
353
+ .btn-yahoo:visited {
354
+ border-color: #ffb305;
355
+ background: #ffc426;
356
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0)));
357
+ background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
358
+ background-image: -moz-linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
359
+ background-image: -ms-linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
360
+ background-image: -o-linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
361
+ background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
362
+ }
363
+
364
+ .btn-yahoo:hover,
365
+ .btn-yahoo:focus {
366
+ background-color: #fabf20;
367
+ }
368
+
369
+ .btn-yahoo:active {
370
+ border-color: #f09700;
371
+ background-image: none;
372
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.3);
373
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.3);
374
+ }
375
+
376
+ /*
377
+ * Icon
378
+ */
379
+
380
+ .btn-yahoo:before {
381
+ margin: 0 0.6em 0 -0.6em;
382
+ background-position: -132px 0;
383
+ }
384
+
385
+ .btn-yahoo.large:before {
386
+ background-position: -216px -22px;
387
+ }