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,459 @@
1
+ /* https://github.com/SudeepAcharjee/The-50-Front-end-Project/blob/main/44.Admin%20panel%20Dashboard/Admin%20Dashboard%20Panel/style.css */
2
+ /* ===== Google Font Import - Poppins ===== */
3
+ @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600&display=swap');
4
+ *{
5
+ margin: 0;
6
+ padding: 0;
7
+ box-sizing: border-box;
8
+ font-family: 'Poppins', sans-serif;
9
+ }
10
+
11
+ :root{
12
+ /* ===== Colors ===== */
13
+ --primary-color: #0E4BF1;
14
+ --panel-color: #FFF;
15
+ --text-color: #000;
16
+ --black-light-color: #707070;
17
+ --border-color: #e6e5e5;
18
+ --toggle-color: #DDD;
19
+ --box1-color: #4DA3FF;
20
+ --box2-color: #FFE6AC;
21
+ --box3-color: #E7D1FC;
22
+ --title-icon-color: #fff;
23
+
24
+ /* ====== Transition ====== */
25
+ --tran-05: all 0.5s ease;
26
+ --tran-03: all 0.3s ease;
27
+ --tran-03: all 0.2s ease;
28
+ }
29
+
30
+ body{
31
+ min-height: 100vh;
32
+ background-color: var(--primary-color);
33
+ }
34
+ body.dark{
35
+ --primary-color: #3A3B3C;
36
+ --panel-color: #242526;
37
+ --text-color: #CCC;
38
+ --black-light-color: #CCC;
39
+ --border-color: #4D4C4C;
40
+ --toggle-color: #FFF;
41
+ --box1-color: #3A3B3C;
42
+ --box2-color: #3A3B3C;
43
+ --box3-color: #3A3B3C;
44
+ --title-icon-color: #CCC;
45
+ }
46
+ /* === Custom Scroll Bar CSS === */
47
+ ::-webkit-scrollbar {
48
+ width: 8px;
49
+ }
50
+ ::-webkit-scrollbar-track {
51
+ background: #f1f1f1;
52
+ }
53
+ ::-webkit-scrollbar-thumb {
54
+ background: var(--primary-color);
55
+ border-radius: 12px;
56
+ transition: all 0.3s ease;
57
+ }
58
+
59
+ ::-webkit-scrollbar-thumb:hover {
60
+ background: #0b3cc1;
61
+ }
62
+
63
+ body.dark::-webkit-scrollbar-thumb:hover,
64
+ body.dark .activity-data::-webkit-scrollbar-thumb:hover{
65
+ background: #3A3B3C;
66
+ }
67
+
68
+ nav{
69
+ position: fixed;
70
+ top: 0;
71
+ left: 0;
72
+ height: 100%;
73
+ width: 250px;
74
+ padding: 10px 14px;
75
+ background-color: var(--panel-color);
76
+ border-right: 1px solid var(--border-color);
77
+ transition: var(--tran-05);
78
+ }
79
+ nav.close{
80
+ width: 73px;
81
+ }
82
+ nav .logo-name{
83
+ display: flex;
84
+ align-items: center;
85
+ }
86
+ nav .logo-image{
87
+ display: flex;
88
+ justify-content: center;
89
+ min-width: 45px;
90
+ }
91
+ nav .logo-image img{
92
+ width: 40px;
93
+ object-fit: cover;
94
+ border-radius: 50%;
95
+ }
96
+
97
+ nav .logo-name .logo_name{
98
+ font-size: 22px;
99
+ font-weight: 600;
100
+ color: var(--text-color);
101
+ margin-left: 14px;
102
+ transition: var(--tran-05);
103
+ }
104
+ nav.close .logo_name{
105
+ opacity: 0;
106
+ pointer-events: none;
107
+ }
108
+ nav .menu-items{
109
+ margin-top: 40px;
110
+ height: calc(100% - 90px);
111
+ display: flex;
112
+ flex-direction: column;
113
+ justify-content: space-between;
114
+ }
115
+ .menu-items li{
116
+ list-style: none;
117
+ }
118
+ .menu-items li a{
119
+ display: flex;
120
+ align-items: center;
121
+ height: 50px;
122
+ text-decoration: none;
123
+ position: relative;
124
+ }
125
+ .nav-links li a:hover:before{
126
+ content: "";
127
+ position: absolute;
128
+ left: -7px;
129
+ height: 5px;
130
+ width: 5px;
131
+ border-radius: 50%;
132
+ background-color: var(--primary-color);
133
+ }
134
+ body.dark li a:hover:before{
135
+ background-color: var(--text-color);
136
+ }
137
+ .menu-items li a i{
138
+ font-size: 24px;
139
+ min-width: 45px;
140
+ height: 100%;
141
+ display: flex;
142
+ align-items: center;
143
+ justify-content: center;
144
+ color: var(--black-light-color);
145
+ }
146
+ .menu-items li a .link-name{
147
+ font-size: 18px;
148
+ font-weight: 400;
149
+ color: var(--black-light-color);
150
+ transition: var(--tran-05);
151
+ }
152
+ nav.close li a .link-name{
153
+ opacity: 0;
154
+ pointer-events: none;
155
+ }
156
+ .nav-links li a:hover i,
157
+ .nav-links li a:hover .link-name{
158
+ color: var(--primary-color);
159
+ }
160
+ body.dark .nav-links li a:hover i,
161
+ body.dark .nav-links li a:hover .link-name{
162
+ color: var(--text-color);
163
+ }
164
+ .menu-items .logout-mode{
165
+ padding-top: 10px;
166
+ border-top: 1px solid var(--border-color);
167
+ }
168
+ .menu-items .mode{
169
+ display: flex;
170
+ align-items: center;
171
+ white-space: nowrap;
172
+ }
173
+ .menu-items .mode-toggle{
174
+ position: absolute;
175
+ right: 14px;
176
+ height: 50px;
177
+ min-width: 45px;
178
+ display: flex;
179
+ align-items: center;
180
+ justify-content: center;
181
+ cursor: pointer;
182
+ }
183
+ .mode-toggle .switch{
184
+ position: relative;
185
+ display: inline-block;
186
+ height: 22px;
187
+ width: 40px;
188
+ border-radius: 25px;
189
+ background-color: var(--toggle-color);
190
+ }
191
+ .switch:before{
192
+ content: "";
193
+ position: absolute;
194
+ left: 5px;
195
+ top: 50%;
196
+ transform: translateY(-50%);
197
+ height: 15px;
198
+ width: 15px;
199
+ background-color: var(--panel-color);
200
+ border-radius: 50%;
201
+ transition: var(--tran-03);
202
+ }
203
+ body.dark .switch:before{
204
+ left: 20px;
205
+ }
206
+
207
+ .dashboard{
208
+ position: relative;
209
+ left: 250px;
210
+ background-color: var(--panel-color);
211
+ min-height: 100vh;
212
+ width: calc(100% - 250px);
213
+ padding: 10px 14px;
214
+ transition: var(--tran-05);
215
+ }
216
+ nav.close ~ .dashboard{
217
+ left: 73px;
218
+ width: calc(100% - 73px);
219
+ }
220
+ .dashboard .top{
221
+ position: fixed;
222
+ top: 0;
223
+ left: 250px;
224
+ display: flex;
225
+ width: calc(100% - 250px);
226
+ justify-content: space-between;
227
+ align-items: center;
228
+ padding: 10px 14px;
229
+ background-color: var(--panel-color);
230
+ transition: var(--tran-05);
231
+ z-index: 10;
232
+ }
233
+ nav.close ~ .dashboard .top{
234
+ left: 73px;
235
+ width: calc(100% - 73px);
236
+ }
237
+ .dashboard .top .sidebar-toggle{
238
+ font-size: 26px;
239
+ color: var(--text-color);
240
+ cursor: pointer;
241
+ }
242
+ .dashboard .top .search-box{
243
+ position: relative;
244
+ height: 45px;
245
+ max-width: 600px;
246
+ width: 100%;
247
+ margin: 0 30px;
248
+ }
249
+ .top .search-box input{
250
+ position: absolute;
251
+ border: 1px solid var(--border-color);
252
+ background-color: var(--panel-color);
253
+ padding: 0 25px 0 50px;
254
+ border-radius: 5px;
255
+ height: 100%;
256
+ width: 100%;
257
+ color: var(--text-color);
258
+ font-size: 15px;
259
+ font-weight: 400;
260
+ outline: none;
261
+ }
262
+ .top .search-box i{
263
+ position: absolute;
264
+ left: 15px;
265
+ font-size: 22px;
266
+ z-index: 10;
267
+ top: 50%;
268
+ transform: translateY(-50%);
269
+ color: var(--black-light-color);
270
+ }
271
+ .top img{
272
+ width: 40px;
273
+ border-radius: 50%;
274
+ }
275
+ .dashboard .dash-content{
276
+ padding-top: 50px;
277
+ }
278
+ .dash-content .title{
279
+ display: flex;
280
+ align-items: center;
281
+ margin: 60px 0 30px 0;
282
+ }
283
+ .dash-content .title i{
284
+ position: relative;
285
+ height: 35px;
286
+ width: 35px;
287
+ background-color: var(--primary-color);
288
+ border-radius: 6px;
289
+ color: var(--title-icon-color);
290
+ display: flex;
291
+ align-items: center;
292
+ justify-content: center;
293
+ font-size: 24px;
294
+ }
295
+ .dash-content .title .text{
296
+ font-size: 24px;
297
+ font-weight: 500;
298
+ color: var(--text-color);
299
+ margin-left: 10px;
300
+ }
301
+ .dash-content .boxes{
302
+ display: flex;
303
+ align-items: center;
304
+ justify-content: space-between;
305
+ flex-wrap: wrap;
306
+ }
307
+ .dash-content .boxes .box{
308
+ display: flex;
309
+ flex-direction: column;
310
+ align-items: center;
311
+ border-radius: 12px;
312
+ width: calc(100% / 3 - 15px);
313
+ padding: 15px 20px;
314
+ background-color: var(--box1-color);
315
+ transition: var(--tran-05);
316
+ }
317
+ .boxes .box i{
318
+ font-size: 35px;
319
+ color: var(--text-color);
320
+ }
321
+ .boxes .box .text{
322
+ white-space: nowrap;
323
+ font-size: 18px;
324
+ font-weight: 500;
325
+ color: var(--text-color);
326
+ }
327
+ .boxes .box .number{
328
+ font-size: 40px;
329
+ font-weight: 500;
330
+ color: var(--text-color);
331
+ }
332
+ .boxes .box.box2{
333
+ background-color: var(--box2-color);
334
+ }
335
+ .boxes .box.box3{
336
+ background-color: var(--box3-color);
337
+ }
338
+ .dash-content .activity .activity-data{
339
+ display: flex;
340
+ justify-content: space-between;
341
+ align-items: center;
342
+ width: 100%;
343
+ }
344
+ .activity .activity-data{
345
+ display: flex;
346
+ }
347
+ .activity-data .data{
348
+ display: flex;
349
+ flex-direction: column;
350
+ margin: 0 15px;
351
+ }
352
+ .activity-data .data-title{
353
+ font-size: 20px;
354
+ font-weight: 500;
355
+ color: var(--text-color);
356
+ }
357
+ .activity-data .data .data-list{
358
+ font-size: 18px;
359
+ font-weight: 400;
360
+ margin-top: 20px;
361
+ white-space: nowrap;
362
+ color: var(--text-color);
363
+ }
364
+
365
+ @media (max-width: 1000px) {
366
+ nav{
367
+ width: 73px;
368
+ }
369
+ nav.close{
370
+ width: 250px;
371
+ }
372
+ nav .logo_name{
373
+ opacity: 0;
374
+ pointer-events: none;
375
+ }
376
+ nav.close .logo_name{
377
+ opacity: 1;
378
+ pointer-events: auto;
379
+ }
380
+ nav li a .link-name{
381
+ opacity: 0;
382
+ pointer-events: none;
383
+ }
384
+ nav.close li a .link-name{
385
+ opacity: 1;
386
+ pointer-events: auto;
387
+ }
388
+ nav ~ .dashboard{
389
+ left: 73px;
390
+ width: calc(100% - 73px);
391
+ }
392
+ nav.close ~ .dashboard{
393
+ left: 250px;
394
+ width: calc(100% - 250px);
395
+ }
396
+ nav ~ .dashboard .top{
397
+ left: 73px;
398
+ width: calc(100% - 73px);
399
+ }
400
+ nav.close ~ .dashboard .top{
401
+ left: 250px;
402
+ width: calc(100% - 250px);
403
+ }
404
+ .activity .activity-data{
405
+ overflow-X: scroll;
406
+ }
407
+ }
408
+
409
+ @media (max-width: 780px) {
410
+ .dash-content .boxes .box{
411
+ width: calc(100% / 2 - 15px);
412
+ margin-top: 15px;
413
+ }
414
+ }
415
+ @media (max-width: 560px) {
416
+ .dash-content .boxes .box{
417
+ width: 100% ;
418
+ }
419
+ }
420
+ @media (max-width: 400px) {
421
+ nav{
422
+ width: 0px;
423
+ }
424
+ nav.close{
425
+ width: 73px;
426
+ }
427
+ nav .logo_name{
428
+ opacity: 0;
429
+ pointer-events: none;
430
+ }
431
+ nav.close .logo_name{
432
+ opacity: 0;
433
+ pointer-events: none;
434
+ }
435
+ nav li a .link-name{
436
+ opacity: 0;
437
+ pointer-events: none;
438
+ }
439
+ nav.close li a .link-name{
440
+ opacity: 0;
441
+ pointer-events: none;
442
+ }
443
+ nav ~ .dashboard{
444
+ left: 0;
445
+ width: 100%;
446
+ }
447
+ nav.close ~ .dashboard{
448
+ left: 73px;
449
+ width: calc(100% - 73px);
450
+ }
451
+ nav ~ .dashboard .top{
452
+ left: 0;
453
+ width: 100%;
454
+ }
455
+ nav.close ~ .dashboard .top{
456
+ left: 0;
457
+ width: 100%;
458
+ }
459
+ }