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,75 @@
1
+ /* https://github.com/level09/enferno/blob/master/enferno/static/css/app.css */
2
+ html, body {
3
+ height: 100%;
4
+ }
5
+
6
+ /* ===== Card Hover Effect ===== */
7
+ .v-card {
8
+ transition: box-shadow 0.2s ease, transform 0.2s ease;
9
+ }
10
+
11
+ .v-card:hover {
12
+ box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08) !important;
13
+ }
14
+
15
+ /* ===== Global Scrollbars ===== */
16
+ ::-webkit-scrollbar {
17
+ width: 6px;
18
+ height: 6px;
19
+ }
20
+
21
+ ::-webkit-scrollbar-track {
22
+ background: transparent;
23
+ }
24
+
25
+ ::-webkit-scrollbar-thumb {
26
+ background-color: rgba(0, 0, 0, 0.15);
27
+ border-radius: 3px;
28
+ }
29
+
30
+ ::-webkit-scrollbar-thumb:hover {
31
+ background-color: rgba(0, 0, 0, 0.25);
32
+ }
33
+
34
+ .v-theme--dark ::-webkit-scrollbar-thumb {
35
+ background-color: rgba(255, 255, 255, 0.15);
36
+ }
37
+
38
+ .v-theme--dark ::-webkit-scrollbar-thumb:hover {
39
+ background-color: rgba(255, 255, 255, 0.25);
40
+ }
41
+
42
+ /* ===== Input Focus States ===== */
43
+ .v-field--focused .v-field__outline {
44
+ --v-field-border-opacity: 1;
45
+ }
46
+
47
+ /* ===== Data Table Enhancements ===== */
48
+ .v-data-table tbody tr:hover {
49
+ background-color: rgba(var(--v-theme-primary), 0.04) !important;
50
+ }
51
+
52
+ .v-data-table tbody tr:nth-child(even) {
53
+ background-color: rgba(0, 0, 0, 0.02);
54
+ }
55
+
56
+ .v-theme--dark .v-data-table tbody tr:nth-child(even) {
57
+ background-color: rgba(255, 255, 255, 0.02);
58
+ }
59
+
60
+ .v-data-table th {
61
+ font-weight: 600 !important;
62
+ text-transform: uppercase;
63
+ font-size: 0.75rem !important;
64
+ letter-spacing: 0.5px;
65
+ }
66
+
67
+ /* ===== Links ===== */
68
+ a {
69
+ color: rgb(var(--v-theme-primary));
70
+ transition: opacity 0.2s;
71
+ }
72
+
73
+ a:hover {
74
+ opacity: 0.8;
75
+ }
@@ -0,0 +1,223 @@
1
+ /* https://github.com/necolas/css3-facebook-buttons/blob/master/fb-buttons.css */
2
+ /* ------------------------------------------
3
+ CSS3 FACEBOOK-STYLE BUTTONS (Nicolas Gallagher)
4
+ MIT License
5
+ http://github.com/necolas/css3-facebook-buttons
6
+ ------------------------------------------ */
7
+
8
+
9
+ /* ------------------------------------------------------------------------------------------------------------- BUTTON */
10
+
11
+ .uibutton,
12
+ .uibutton:visited {
13
+ position: relative;
14
+ z-index: 1;
15
+ overflow: visible;
16
+ display: inline-block;
17
+ padding: 0.3em 0.6em 0.375em;
18
+ border: 1px solid #999;
19
+ border-bottom-color: #888;
20
+ margin: 0;
21
+ text-decoration: none;
22
+ text-align: center;
23
+ font: bold 11px/normal 'lucida grande', tahoma, verdana, arial, sans-serif;
24
+ white-space: nowrap;
25
+ cursor: pointer;
26
+ /* outline: none; */
27
+ color: #333;
28
+ background-color: #eee;
29
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f6f6), to(#e4e4e3));
30
+ background-image: -moz-linear-gradient(#f5f6f6, #e4e4e3);
31
+ background-image: -o-linear-gradient(#f5f6f6, #e4e4e3);
32
+ background-image: linear-gradient(#f5f6f6, #e4e4e3);
33
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f5f6f6', EndColorStr='#e4e4e3'); /* for IE 6 - 9 */
34
+ -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1), inset 0 1px 0 #fff;
35
+ -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1), inset 0 1px 0 #fff;
36
+ box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1), inset 0 1px 0 #fff;
37
+ /* IE hacks */
38
+ zoom: 1;
39
+ *display: inline;
40
+ }
41
+
42
+ .uibutton:hover,
43
+ .uibutton:focus,
44
+ .uibutton:active {
45
+ border-color: #777 #777 #666;
46
+ }
47
+
48
+ .uibutton:active {
49
+ border-color: #aaa;
50
+ background: #ddd;
51
+ filter: none;
52
+ -webkit-box-shadow: none;
53
+ -moz-box-shadow: none;
54
+ box-shadow: none;
55
+ }
56
+
57
+ /* overrides extra padding on button elements in Firefox */
58
+ .uibutton::-moz-focus-inner {
59
+ padding: 0;
60
+ border: 0;
61
+ }
62
+
63
+ /* ............................................................................................................. Icons */
64
+
65
+ .uibutton.icon:before {
66
+ content: "";
67
+ position: relative;
68
+ top: 1px;
69
+ float:left;
70
+ width: 10px;
71
+ height: 12px;
72
+ margin: 0 0.5em 0 0;
73
+ background: url(fb-icons.png) 99px 99px no-repeat;
74
+ }
75
+
76
+ .uibutton.edit:before { background-position: 0 0; }
77
+ .uibutton.add:before { background-position: -10px 0; }
78
+ .uibutton.secure:before { background-position: -20px 0; }
79
+ .uibutton.prev:before { background-position: -30px 0; }
80
+ .uibutton.next:before { float:right; margin: 0 -0.25em 0 0.5em; background-position: -40px 0; }
81
+
82
+ /* ------------------------------------------------------------------------------------------------------------- BUTTON EXTENSIONS */
83
+
84
+ /* ............................................................................................................. Large */
85
+
86
+ .uibutton.large {
87
+ font-size: 13px;
88
+ }
89
+
90
+ /* ............................................................................................................. Submit, etc */
91
+
92
+ .uibutton.confirm {
93
+ border-color: #29447e #29447e #1a356e;
94
+ color: #fff;
95
+ background-color: #5B74A8;
96
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#637bad), to(#5872a7));
97
+ background-image: -moz-linear-gradient(#637bad, #5872a7);
98
+ background-image: -o-linear-gradient(#637bad, #5872a7);
99
+ background-image: linear-gradient(#637bad, #5872a7);
100
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#637bad', EndColorStr='#5872a7'); /* for IE 6 - 9 */
101
+ -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1), inset 0 1px 0 #8a9cc2;
102
+ -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1), inset 0 1px 0 #8a9cc2;
103
+ box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1), inset 0 1px 0 #8a9cc2;
104
+ }
105
+
106
+ .uibutton.confirm:active {
107
+ border-color: #29447E;
108
+ background: #4F6AA3;
109
+ filter: none;
110
+ -webkit-box-shadow: none;
111
+ -moz-box-shadow: none;
112
+ box-shadow: none;
113
+ }
114
+
115
+ /* ............................................................................................................. Special */
116
+
117
+ .uibutton.special {
118
+ border-color: #3b6e22 #3b6e22 #2c5115;
119
+ color: #fff;
120
+ background-color: #69a74e;
121
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#75ae5c), to(#67a54b));
122
+ background-image: -moz-linear-gradient(#75ae5c, #67a54b);
123
+ background-image: -o-linear-gradient(#75ae5c, #67a54b);
124
+ background-image: linear-gradient(#75ae5c, #67a54b);
125
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#75ae5c', EndColorStr='#67a54b'); /* for IE 6 - 9 */
126
+ -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1), inset 0 1px 0 #98c286;
127
+ -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1), inset 0 1px 0 #98c286;
128
+ box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1), inset 0 1px 0 #98c286;
129
+ }
130
+
131
+ .uibutton.special:active {
132
+ border-color: #3b6e22;
133
+ background: #609946;
134
+ filter: none;
135
+ -webkit-box-shadow: none;
136
+ -moz-box-shadow: none;
137
+ box-shadow: none;
138
+ }
139
+
140
+ /* ............................................................................................................. Disable */
141
+
142
+ .uibutton.disable {
143
+ z-index: 0;
144
+ border-color: #c8c8c8;
145
+ color: #b8b8b8;
146
+ background: #f2f2f2;
147
+ cursor: default;
148
+ -webkit-box-shadow: none;
149
+ -moz-box-shadow: none;
150
+ box-shadow: none;
151
+ }
152
+
153
+ .uibutton.confirm.disable {
154
+ color: #fff;
155
+ border-color: #94a2bf;
156
+ background: #adbad4;
157
+ }
158
+
159
+ .uibutton.special.disable {
160
+ color: #fff;
161
+ border-color: #9db791;
162
+ background: #b4d3a7;
163
+ }
164
+
165
+ .uibutton.disable.icon:before,
166
+ .uibutton.disable.icon:after {
167
+ opacity: 0.5;
168
+ }
169
+
170
+ /* ------------------------------------------------------------------------------------------------------------- BUTTON GROUPS */
171
+
172
+ .uibutton-group {
173
+ display: inline-block;
174
+ list-style: none;
175
+ padding: 0;
176
+ margin: 0;
177
+ /* IE hacks */
178
+ zoom: 1;
179
+ *display: inline;
180
+ }
181
+
182
+ .uibutton + .uibutton,
183
+ .uibutton + .uibutton-group,
184
+ .uibutton-group + .uibutton,
185
+ .uibutton-group + .uibutton-group {
186
+ margin-left: 3px;
187
+ }
188
+
189
+ .uibutton-group li {
190
+ float: left;
191
+ padding: 0;
192
+ margin: 0;
193
+ }
194
+
195
+ .uibutton-group .uibutton {
196
+ float: left;
197
+ margin-left: -1px;
198
+ }
199
+
200
+ .uibutton-group .uibutton:hover,
201
+ .uibutton-group .uibutton:focus,
202
+ .uibutton-group .uibutton:active {
203
+ z-index:2;
204
+ }
205
+
206
+ .uibutton-group > .uibutton:first-child,
207
+ .uibutton-group li:first-child .uibutton {
208
+ margin-left: 0;
209
+ }
210
+
211
+ /* ------------------------------------------------------------------------------------------------------------- BUTTON CONTAINER */
212
+ /* For mixing buttons and button groups, e.g., in a navigation bar */
213
+
214
+ .uibutton-toolbar {
215
+ padding: 6px;
216
+ border-top: 1px solid #ccc;
217
+ background: #f2f2f2;
218
+ }
219
+
220
+ .uibutton-toolbar .uibutton,
221
+ .uibutton-toolbar .uibutton-group {
222
+ vertical-align: bottom;
223
+ }