lime-css-framework 1.0.0

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.
package/dist/lime.css ADDED
@@ -0,0 +1,1680 @@
1
+ /*!
2
+ * ==========================================================
3
+ * Name: Lime CSS Framework
4
+ * Version: 1.0.0
5
+ * Author: Shaik Obydullah
6
+ * Author URI: https://obydullah.com
7
+ * ==========================================================
8
+ */
9
+
10
+ /*
11
+ Index
12
+
13
+ 1. CSS Reset and Base Styles
14
+ 2. Container System
15
+ 3. Grid System - 12 Columns
16
+ 4. Buttons
17
+ 5. Forms
18
+ 6. Data Tables
19
+ 7. Background and Text Colors
20
+ 8. Spacing Utilities
21
+ 9. Display Utilities
22
+ 10. Text Utilities
23
+ 11. Border Utilities
24
+ 12. Rounded Utilities
25
+ 13. Shadow Utilities
26
+ 14. Alert
27
+ 15. Code
28
+ 16. Navbar
29
+ 17. Responsive Images
30
+ 18. Visibility
31
+ 19. Float
32
+ 20. Width and Height
33
+ 21. Position
34
+ 22. Overflow
35
+ 23. Custom Lime Framework Classes
36
+ 24. Responsive Utilities
37
+
38
+ */
39
+
40
+ /* ==========================================================================
41
+ 1. CSS Reset and Base Styles
42
+ ========================================================================== */
43
+ * {
44
+ box-sizing: border-box;
45
+ margin: 0;
46
+ padding: 0;
47
+ }
48
+
49
+ html {
50
+ font-size: 16px;
51
+ scroll-behavior: smooth;
52
+ }
53
+
54
+ body {
55
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
56
+ font-size: 1rem;
57
+ line-height: 1.5;
58
+ color: #212529;
59
+ background-color: #fff;
60
+ }
61
+
62
+ /* ==========================================================================
63
+ 2. Container System
64
+ ========================================================================== */
65
+ .container {
66
+ width: 100%;
67
+ padding-right: 15px;
68
+ padding-left: 15px;
69
+ margin-right: auto;
70
+ margin-left: auto;
71
+ }
72
+
73
+ @media (min-width: 576px) {
74
+ .container {
75
+ max-width: 540px;
76
+ }
77
+ }
78
+
79
+ @media (min-width: 768px) {
80
+ .container {
81
+ max-width: 720px;
82
+ }
83
+ }
84
+
85
+ @media (min-width: 992px) {
86
+ .container {
87
+ max-width: 960px;
88
+ }
89
+ }
90
+
91
+ @media (min-width: 1200px) {
92
+ .container {
93
+ max-width: 1140px;
94
+ }
95
+ }
96
+
97
+ .container-fluid {
98
+ width: 100%;
99
+ padding-right: 15px;
100
+ padding-left: 15px;
101
+ margin-right: auto;
102
+ margin-left: auto;
103
+ }
104
+
105
+ /* ==========================================================================
106
+ 3. Grid System - 12 Columns
107
+ ========================================================================== */
108
+ .row {
109
+ display: flex;
110
+ flex-wrap: wrap;
111
+ margin-right: -15px;
112
+ margin-left: -15px;
113
+ }
114
+
115
+ .row > * {
116
+ padding-right: 15px;
117
+ padding-left: 15px;
118
+ }
119
+
120
+ .col {
121
+ flex: 1 0 0%;
122
+ }
123
+
124
+ /* Column Classes for all breakpoints */
125
+ .col-1 {
126
+ flex: 0 0 8.333333%;
127
+ max-width: 8.333333%;
128
+ }
129
+ .col-2 {
130
+ flex: 0 0 16.666667%;
131
+ max-width: 16.666667%;
132
+ }
133
+ .col-3 {
134
+ flex: 0 0 25%;
135
+ max-width: 25%;
136
+ }
137
+ .col-4 {
138
+ flex: 0 0 33.333333%;
139
+ max-width: 33.333333%;
140
+ }
141
+ .col-5 {
142
+ flex: 0 0 41.666667%;
143
+ max-width: 41.666667%;
144
+ }
145
+ .col-6 {
146
+ flex: 0 0 50%;
147
+ max-width: 50%;
148
+ }
149
+ .col-7 {
150
+ flex: 0 0 58.333333%;
151
+ max-width: 58.333333%;
152
+ }
153
+ .col-8 {
154
+ flex: 0 0 66.666667%;
155
+ max-width: 66.666667%;
156
+ }
157
+ .col-9 {
158
+ flex: 0 0 75%;
159
+ max-width: 75%;
160
+ }
161
+ .col-10 {
162
+ flex: 0 0 83.333333%;
163
+ max-width: 83.333333%;
164
+ }
165
+ .col-11 {
166
+ flex: 0 0 91.666667%;
167
+ max-width: 91.666667%;
168
+ }
169
+ .col-12 {
170
+ flex: 0 0 100%;
171
+ max-width: 100%;
172
+ }
173
+
174
+ /* Small devices (≥576px) */
175
+ @media (min-width: 576px) {
176
+ .col-sm-1 {
177
+ flex: 0 0 8.333333%;
178
+ max-width: 8.333333%;
179
+ }
180
+ .col-sm-2 {
181
+ flex: 0 0 16.666667%;
182
+ max-width: 16.666667%;
183
+ }
184
+ .col-sm-3 {
185
+ flex: 0 0 25%;
186
+ max-width: 25%;
187
+ }
188
+ .col-sm-4 {
189
+ flex: 0 0 33.333333%;
190
+ max-width: 33.333333%;
191
+ }
192
+ .col-sm-5 {
193
+ flex: 0 0 41.666667%;
194
+ max-width: 41.666667%;
195
+ }
196
+ .col-sm-6 {
197
+ flex: 0 0 50%;
198
+ max-width: 50%;
199
+ }
200
+ .col-sm-7 {
201
+ flex: 0 0 58.333333%;
202
+ max-width: 58.333333%;
203
+ }
204
+ .col-sm-8 {
205
+ flex: 0 0 66.666667%;
206
+ max-width: 66.666667%;
207
+ }
208
+ .col-sm-9 {
209
+ flex: 0 0 75%;
210
+ max-width: 75%;
211
+ }
212
+ .col-sm-10 {
213
+ flex: 0 0 83.333333%;
214
+ max-width: 83.333333%;
215
+ }
216
+ .col-sm-11 {
217
+ flex: 0 0 91.666667%;
218
+ max-width: 91.666667%;
219
+ }
220
+ .col-sm-12 {
221
+ flex: 0 0 100%;
222
+ max-width: 100%;
223
+ }
224
+ }
225
+
226
+ /* Medium devices (≥768px) */
227
+ @media (min-width: 768px) {
228
+ .col-md-1 {
229
+ flex: 0 0 8.333333%;
230
+ max-width: 8.333333%;
231
+ }
232
+ .col-md-2 {
233
+ flex: 0 0 16.666667%;
234
+ max-width: 16.666667%;
235
+ }
236
+ .col-md-3 {
237
+ flex: 0 0 25%;
238
+ max-width: 25%;
239
+ }
240
+ .col-md-4 {
241
+ flex: 0 0 33.333333%;
242
+ max-width: 33.333333%;
243
+ }
244
+ .col-md-5 {
245
+ flex: 0 0 41.666667%;
246
+ max-width: 41.666667%;
247
+ }
248
+ .col-md-6 {
249
+ flex: 0 0 50%;
250
+ max-width: 50%;
251
+ }
252
+ .col-md-7 {
253
+ flex: 0 0 58.333333%;
254
+ max-width: 58.333333%;
255
+ }
256
+ .col-md-8 {
257
+ flex: 0 0 66.666667%;
258
+ max-width: 66.666667%;
259
+ }
260
+ .col-md-9 {
261
+ flex: 0 0 75%;
262
+ max-width: 75%;
263
+ }
264
+ .col-md-10 {
265
+ flex: 0 0 83.333333%;
266
+ max-width: 83.333333%;
267
+ }
268
+ .col-md-11 {
269
+ flex: 0 0 91.666667%;
270
+ max-width: 91.666667%;
271
+ }
272
+ .col-md-12 {
273
+ flex: 0 0 100%;
274
+ max-width: 100%;
275
+ }
276
+ }
277
+
278
+ /* Large devices (≥992px) */
279
+ @media (min-width: 992px) {
280
+ .col-lg-1 {
281
+ flex: 0 0 8.333333%;
282
+ max-width: 8.333333%;
283
+ }
284
+ .col-lg-2 {
285
+ flex: 0 0 16.666667%;
286
+ max-width: 16.666667%;
287
+ }
288
+ .col-lg-3 {
289
+ flex: 0 0 25%;
290
+ max-width: 25%;
291
+ }
292
+ .col-lg-4 {
293
+ flex: 0 0 33.333333%;
294
+ max-width: 33.333333%;
295
+ }
296
+ .col-lg-5 {
297
+ flex: 0 0 41.666667%;
298
+ max-width: 41.666667%;
299
+ }
300
+ .col-lg-6 {
301
+ flex: 0 0 50%;
302
+ max-width: 50%;
303
+ }
304
+ .col-lg-7 {
305
+ flex: 0 0 58.333333%;
306
+ max-width: 58.333333%;
307
+ }
308
+ .col-lg-8 {
309
+ flex: 0 0 66.666667%;
310
+ max-width: 66.666667%;
311
+ }
312
+ .col-lg-9 {
313
+ flex: 0 0 75%;
314
+ max-width: 75%;
315
+ }
316
+ .col-lg-10 {
317
+ flex: 0 0 83.333333%;
318
+ max-width: 83.333333%;
319
+ }
320
+ .col-lg-11 {
321
+ flex: 0 0 91.666667%;
322
+ max-width: 91.666667%;
323
+ }
324
+ .col-lg-12 {
325
+ flex: 0 0 100%;
326
+ max-width: 100%;
327
+ }
328
+ }
329
+
330
+ /* Extra large devices (≥1200px) */
331
+ @media (min-width: 1200px) {
332
+ .col-xl-1 {
333
+ flex: 0 0 8.333333%;
334
+ max-width: 8.333333%;
335
+ }
336
+ .col-xl-2 {
337
+ flex: 0 0 16.666667%;
338
+ max-width: 16.666667%;
339
+ }
340
+ .col-xl-3 {
341
+ flex: 0 0 25%;
342
+ max-width: 25%;
343
+ }
344
+ .col-xl-4 {
345
+ flex: 0 0 33.333333%;
346
+ max-width: 33.333333%;
347
+ }
348
+ .col-xl-5 {
349
+ flex: 0 0 41.666667%;
350
+ max-width: 41.666667%;
351
+ }
352
+ .col-xl-6 {
353
+ flex: 0 0 50%;
354
+ max-width: 50%;
355
+ }
356
+ .col-xl-7 {
357
+ flex: 0 0 58.333333%;
358
+ max-width: 58.333333%;
359
+ }
360
+ .col-xl-8 {
361
+ flex: 0 0 66.666667%;
362
+ max-width: 66.666667%;
363
+ }
364
+ .col-xl-9 {
365
+ flex: 0 0 75%;
366
+ max-width: 75%;
367
+ }
368
+ .col-xl-10 {
369
+ flex: 0 0 83.333333%;
370
+ max-width: 83.333333%;
371
+ }
372
+ .col-xl-11 {
373
+ flex: 0 0 91.666667%;
374
+ max-width: 91.666667%;
375
+ }
376
+ .col-xl-12 {
377
+ flex: 0 0 100%;
378
+ max-width: 100%;
379
+ }
380
+ }
381
+
382
+ /* ==========================================================================
383
+ 4. Buttons
384
+ ========================================================================== */
385
+ .btn {
386
+ display: inline-block;
387
+ font-weight: 400;
388
+ text-align: center;
389
+ white-space: nowrap;
390
+ vertical-align: middle;
391
+ user-select: none;
392
+ border: 1px solid transparent;
393
+ padding: 0.375rem 0.75rem;
394
+ font-size: 1rem;
395
+ line-height: 1.5;
396
+ border-radius: 0.25rem;
397
+ transition: all 0.15s ease-in-out;
398
+ cursor: pointer;
399
+ text-decoration: none;
400
+ }
401
+
402
+ .btn:hover,
403
+ .btn:focus {
404
+ text-decoration: none;
405
+ outline: 0;
406
+ }
407
+
408
+ .btn:focus {
409
+ box-shadow: 0 0 0 0.2rem rgba(50, 205, 50, 0.25);
410
+ }
411
+
412
+ /* Button Colors - Lime as primary */
413
+ .btn-primary {
414
+ color: #fff;
415
+ background-color: #32cd32;
416
+ border-color: #32cd32;
417
+ }
418
+
419
+ .btn-primary:hover {
420
+ background-color: #2db82d;
421
+ border-color: #28a428;
422
+ }
423
+
424
+ .btn-secondary {
425
+ color: #fff;
426
+ background-color: #6c757d;
427
+ border-color: #6c757d;
428
+ }
429
+
430
+ .btn-secondary:hover {
431
+ background-color: #5a6268;
432
+ border-color: #545b62;
433
+ }
434
+
435
+ .btn-success {
436
+ color: #fff;
437
+ background-color: #28a745;
438
+ border-color: #28a745;
439
+ }
440
+
441
+ .btn-success:hover {
442
+ background-color: #218838;
443
+ border-color: #1e7e34;
444
+ }
445
+
446
+ .btn-danger {
447
+ color: #fff;
448
+ background-color: #dc3545;
449
+ border-color: #dc3545;
450
+ }
451
+
452
+ .btn-danger:hover {
453
+ background-color: #c82333;
454
+ border-color: #bd2130;
455
+ }
456
+
457
+ .btn-warning {
458
+ color: #212529;
459
+ background-color: #ffc107;
460
+ border-color: #ffc107;
461
+ }
462
+
463
+ .btn-warning:hover {
464
+ background-color: #e0a800;
465
+ border-color: #d39e00;
466
+ }
467
+
468
+ .btn-info {
469
+ color: #fff;
470
+ background-color: #17a2b8;
471
+ border-color: #17a2b8;
472
+ }
473
+
474
+ .btn-info:hover {
475
+ background-color: #138496;
476
+ border-color: #117a8b;
477
+ }
478
+
479
+ .btn-light {
480
+ color: #212529;
481
+ background-color: #f8f9fa;
482
+ border-color: #f8f9fa;
483
+ }
484
+
485
+ .btn-light:hover {
486
+ background-color: #e2e6ea;
487
+ border-color: #dae0e5;
488
+ }
489
+
490
+ .btn-dark {
491
+ color: #fff;
492
+ background-color: #343a40;
493
+ border-color: #343a40;
494
+ }
495
+
496
+ .btn-dark:hover {
497
+ background-color: #23272b;
498
+ border-color: #1d2124;
499
+ }
500
+
501
+ /* Button Sizes */
502
+ .btn-lg {
503
+ padding: 0.5rem 1rem;
504
+ font-size: 1.25rem;
505
+ border-radius: 0.3rem;
506
+ }
507
+
508
+ .btn-sm {
509
+ padding: 0.25rem 0.5rem;
510
+ font-size: 0.875rem;
511
+ border-radius: 0.2rem;
512
+ }
513
+
514
+ .btn-block {
515
+ display: block;
516
+ width: 100%;
517
+ }
518
+
519
+ /* Outline Color Variants */
520
+ .btn-outline-primary {
521
+ color: #32cd32;
522
+ background-color: transparent;
523
+ border: 1px solid #32cd32;
524
+ }
525
+
526
+ .btn-outline-primary:hover {
527
+ color: #fff;
528
+ background-color: #32cd32;
529
+ border-color: #32cd32;
530
+ }
531
+
532
+ .btn-outline-secondary {
533
+ color: #6c757d;
534
+ background-color: transparent;
535
+ border: 1px solid #6c757d;
536
+ }
537
+
538
+ .btn-outline-secondary:hover {
539
+ color: #fff;
540
+ background-color: #6c757d;
541
+ border-color: #6c757d;
542
+ }
543
+
544
+ .btn-outline-success {
545
+ color: #28a745;
546
+ background-color: transparent;
547
+ border: 1px solid #28a745;
548
+ }
549
+
550
+ .btn-outline-success:hover {
551
+ color: #fff;
552
+ background-color: #28a745;
553
+ border-color: #28a745;
554
+ }
555
+
556
+ .btn-outline-danger {
557
+ color: #dc3545;
558
+ background-color: transparent;
559
+ border: 1px solid #dc3545;
560
+ }
561
+
562
+ .btn-outline-danger:hover {
563
+ color: #fff;
564
+ background-color: #dc3545;
565
+ border-color: #dc3545;
566
+ }
567
+
568
+ .btn-outline-warning {
569
+ color: #ffc107;
570
+ background-color: transparent;
571
+ border: 1px solid #ffc107;
572
+ }
573
+
574
+ .btn-outline-warning:hover {
575
+ color: #212529;
576
+ background-color: #ffc107;
577
+ border-color: #ffc107;
578
+ }
579
+
580
+ .btn-outline-info {
581
+ color: #17a2b8;
582
+ background-color: transparent;
583
+ border: 1px solid #17a2b8;
584
+ }
585
+
586
+ .btn-outline-info:hover {
587
+ color: #fff;
588
+ background-color: #17a2b8;
589
+ border-color: #17a2b8;
590
+ }
591
+
592
+ .btn-outline-light {
593
+ color: #f8f9fa;
594
+ background-color: transparent;
595
+ border: 1px solid #f8f9fa;
596
+ }
597
+
598
+ .btn-outline-light:hover {
599
+ color: #212529;
600
+ background-color: #f8f9fa;
601
+ border-color: #f8f9fa;
602
+ }
603
+
604
+ .btn-outline-dark {
605
+ color: #343a40;
606
+ background-color: transparent;
607
+ border: 1px solid #343a40;
608
+ }
609
+
610
+ .btn-outline-dark:hover {
611
+ color: #fff;
612
+ background-color: #343a40;
613
+ border-color: #343a40;
614
+ }
615
+
616
+ /* ==========================================================================
617
+ 5. Forms
618
+ ========================================================================== */
619
+ .form-group {
620
+ margin-bottom: 1rem;
621
+ }
622
+
623
+ .form-control {
624
+ display: block;
625
+ width: 100%;
626
+ padding: 0.375rem 0.75rem;
627
+ font-size: 1rem;
628
+ line-height: 1.5;
629
+ color: #495057;
630
+ background-color: #fff;
631
+ background-clip: padding-box;
632
+ border: 1px solid #ced4da;
633
+ border-radius: 0.25rem;
634
+ transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
635
+ }
636
+
637
+ .form-control:focus {
638
+ border-color: #80d080;
639
+ outline: 0;
640
+ box-shadow: 0 0 0 0.2rem rgba(50, 205, 50, 0.25);
641
+ }
642
+
643
+ .form-control-lg {
644
+ padding: 0.5rem 1rem;
645
+ font-size: 1.25rem;
646
+ border-radius: 0.3rem;
647
+ }
648
+
649
+ .form-control-sm {
650
+ padding: 0.25rem 0.5rem;
651
+ font-size: 0.875rem;
652
+ border-radius: 0.2rem;
653
+ }
654
+
655
+ .form-text {
656
+ display: block;
657
+ margin-top: 0.25rem;
658
+ color: #6c757d;
659
+ font-size: 0.875rem;
660
+ }
661
+
662
+ /* Labels */
663
+ label {
664
+ display: inline-block;
665
+ margin-bottom: 0.5rem;
666
+ font-weight: 500;
667
+ }
668
+
669
+ .form-check {
670
+ position: relative;
671
+ display: block;
672
+ padding-left: 1.25rem;
673
+ margin-bottom: 0.5rem;
674
+ }
675
+
676
+ .form-check-input {
677
+ position: absolute;
678
+ margin-top: 0.3rem;
679
+ margin-left: -1.25rem;
680
+ }
681
+
682
+ .form-check-label {
683
+ margin-bottom: 0;
684
+ }
685
+
686
+ input[type="text"],
687
+ input[type="file"],
688
+ select {
689
+ width: 100%;
690
+ max-width: 400px;
691
+ height: 35px;
692
+ }
693
+
694
+ /* ==========================================================================
695
+ 6. Data Tables
696
+ ========================================================================== */
697
+ .table {
698
+ width: 100%;
699
+ margin-bottom: 1rem;
700
+ color: #212529;
701
+ border-collapse: collapse;
702
+ }
703
+
704
+ .table th,
705
+ .table td {
706
+ padding: 0.75rem;
707
+ vertical-align: top;
708
+ border-top: 1px solid #dee2e6;
709
+ }
710
+
711
+ .table thead th {
712
+ vertical-align: bottom;
713
+ border-bottom: 2px solid #dee2e6;
714
+ font-weight: 600;
715
+ text-align: left;
716
+ }
717
+
718
+ .table tbody + tbody {
719
+ border-top: 2px solid #dee2e6;
720
+ }
721
+
722
+ .table-bordered {
723
+ border: 1px solid #dee2e6;
724
+ }
725
+
726
+ .table-bordered th,
727
+ .table-bordered td {
728
+ border: 1px solid #dee2e6;
729
+ }
730
+
731
+ .table-bordered thead th,
732
+ .table-bordered thead td {
733
+ border-bottom-width: 2px;
734
+ }
735
+
736
+ .table-striped tbody tr:nth-of-type(odd) {
737
+ background-color: rgba(0, 0, 0, 0.02);
738
+ }
739
+
740
+ .table-hover tbody tr:hover {
741
+ background-color: rgba(0, 0, 0, 0.04);
742
+ }
743
+
744
+ .table-primary,
745
+ .table-primary > th,
746
+ .table-primary > td {
747
+ background-color: #d1f7d1;
748
+ }
749
+
750
+ .table-success,
751
+ .table-success > th,
752
+ .table-success > td {
753
+ background-color: #d4edda;
754
+ }
755
+
756
+ .table-danger,
757
+ .table-danger > th,
758
+ .table-danger > td {
759
+ background-color: #f8d7da;
760
+ }
761
+
762
+ .table-warning,
763
+ .table-warning > th,
764
+ .table-warning > td {
765
+ background-color: #fff3cd;
766
+ }
767
+
768
+ .table-info,
769
+ .table-info > th,
770
+ .table-info > td {
771
+ background-color: #d1ecf1;
772
+ }
773
+
774
+ /* ==========================================================================
775
+ 7. Background and Text Colors
776
+ ========================================================================== */
777
+ /* Background Colors */
778
+ .bg-primary {
779
+ background-color: #32cd32 !important;
780
+ color: white;
781
+ }
782
+
783
+ .bg-secondary {
784
+ background-color: #6c757d !important;
785
+ color: white;
786
+ }
787
+
788
+ .bg-success {
789
+ background-color: #28a745 !important;
790
+ color: white;
791
+ }
792
+
793
+ .bg-danger {
794
+ background-color: #dc3545 !important;
795
+ color: white;
796
+ }
797
+
798
+ .bg-warning {
799
+ background-color: #ffc107 !important;
800
+ color: #212529;
801
+ }
802
+
803
+ .bg-info {
804
+ background-color: #17a2b8 !important;
805
+ color: white;
806
+ }
807
+
808
+ .bg-light {
809
+ background-color: #f8f9fa !important;
810
+ color: #212529;
811
+ }
812
+
813
+ .bg-dark {
814
+ background-color: #343a40 !important;
815
+ color: white;
816
+ }
817
+
818
+ .bg-white {
819
+ background-color: #fff !important;
820
+ color: #212529;
821
+ }
822
+
823
+ /* Text Colors */
824
+ .text-primary {
825
+ color: #32cd32 !important;
826
+ }
827
+ .text-secondary {
828
+ color: #6c757d !important;
829
+ }
830
+ .text-success {
831
+ color: #28a745 !important;
832
+ }
833
+ .text-danger {
834
+ color: #dc3545 !important;
835
+ }
836
+ .text-warning {
837
+ color: #ffc107 !important;
838
+ }
839
+ .text-info {
840
+ color: #17a2b8 !important;
841
+ }
842
+ .text-light {
843
+ color: #f8f9fa !important;
844
+ }
845
+ .text-dark {
846
+ color: #343a40 !important;
847
+ }
848
+ .text-white {
849
+ color: #fff !important;
850
+ }
851
+ .text-muted {
852
+ color: #6c757d !important;
853
+ }
854
+
855
+ /* ==========================================================================
856
+ 8. Spacing Utilities
857
+ ========================================================================== */
858
+ /* Margin Utilities */
859
+ .m-0 {
860
+ margin: 0 !important;
861
+ }
862
+ .m-1 {
863
+ margin: 0.25rem !important;
864
+ }
865
+ .m-2 {
866
+ margin: 0.5rem !important;
867
+ }
868
+ .m-3 {
869
+ margin: 1rem !important;
870
+ }
871
+ .m-4 {
872
+ margin: 1.5rem !important;
873
+ }
874
+ .m-5 {
875
+ margin: 3rem !important;
876
+ }
877
+
878
+ .mt-0 {
879
+ margin-top: 0 !important;
880
+ }
881
+ .mt-1 {
882
+ margin-top: 0.25rem !important;
883
+ }
884
+ .mt-2 {
885
+ margin-top: 0.5rem !important;
886
+ }
887
+ .mt-3 {
888
+ margin-top: 1rem !important;
889
+ }
890
+ .mt-4 {
891
+ margin-top: 1.5rem !important;
892
+ }
893
+ .mt-5 {
894
+ margin-top: 3rem !important;
895
+ }
896
+
897
+ .mb-0 {
898
+ margin-bottom: 0 !important;
899
+ }
900
+ .mb-1 {
901
+ margin-bottom: 0.25rem !important;
902
+ }
903
+ .mb-2 {
904
+ margin-bottom: 0.5rem !important;
905
+ }
906
+ .mb-3 {
907
+ margin-bottom: 1rem !important;
908
+ }
909
+ .mb-4 {
910
+ margin-bottom: 1.5rem !important;
911
+ }
912
+ .mb-5 {
913
+ margin-bottom: 3rem !important;
914
+ }
915
+
916
+ .ml-0 {
917
+ margin-left: 0 !important;
918
+ }
919
+ .ml-1 {
920
+ margin-left: 0.25rem !important;
921
+ }
922
+ .ml-2 {
923
+ margin-left: 0.5rem !important;
924
+ }
925
+ .ml-3 {
926
+ margin-left: 1rem !important;
927
+ }
928
+ .ml-4 {
929
+ margin-left: 1.5rem !important;
930
+ }
931
+ .ml-5 {
932
+ margin-left: 3rem !important;
933
+ }
934
+
935
+ .mr-0 {
936
+ margin-right: 0 !important;
937
+ }
938
+ .mr-1 {
939
+ margin-right: 0.25rem !important;
940
+ }
941
+ .mr-2 {
942
+ margin-right: 0.5rem !important;
943
+ }
944
+ .mr-3 {
945
+ margin-right: 1rem !important;
946
+ }
947
+ .mr-4 {
948
+ margin-right: 1.5rem !important;
949
+ }
950
+ .mr-5 {
951
+ margin-right: 3rem !important;
952
+ }
953
+
954
+ /* Padding Utilities */
955
+ .p-0 {
956
+ padding: 0 !important;
957
+ }
958
+ .p-1 {
959
+ padding: 0.25rem !important;
960
+ }
961
+ .p-2 {
962
+ padding: 0.5rem !important;
963
+ }
964
+ .p-3 {
965
+ padding: 1rem !important;
966
+ }
967
+ .p-4 {
968
+ padding: 1.5rem !important;
969
+ }
970
+ .p-5 {
971
+ padding: 3rem !important;
972
+ }
973
+
974
+ .pt-0 {
975
+ padding-top: 0 !important;
976
+ }
977
+ .pt-1 {
978
+ padding-top: 0.25rem !important;
979
+ }
980
+ .pt-2 {
981
+ padding-top: 0.5rem !important;
982
+ }
983
+ .pt-3 {
984
+ padding-top: 1rem !important;
985
+ }
986
+ .pt-4 {
987
+ padding-top: 1.5rem !important;
988
+ }
989
+ .pt-5 {
990
+ padding-top: 3rem !important;
991
+ }
992
+
993
+ .pb-0 {
994
+ padding-bottom: 0 !important;
995
+ }
996
+ .pb-1 {
997
+ padding-bottom: 0.25rem !important;
998
+ }
999
+ .pb-2 {
1000
+ padding-bottom: 0.5rem !important;
1001
+ }
1002
+ .pb-3 {
1003
+ padding-bottom: 1rem !important;
1004
+ }
1005
+ .pb-4 {
1006
+ padding-bottom: 1.5rem !important;
1007
+ }
1008
+ .pb-5 {
1009
+ padding-bottom: 3rem !important;
1010
+ }
1011
+
1012
+ .pl-0 {
1013
+ padding-left: 0 !important;
1014
+ }
1015
+ .pl-1 {
1016
+ padding-left: 0.25rem !important;
1017
+ }
1018
+ .pl-2 {
1019
+ padding-left: 0.5rem !important;
1020
+ }
1021
+ .pl-3 {
1022
+ padding-left: 1rem !important;
1023
+ }
1024
+ .pl-4 {
1025
+ padding-left: 1.5rem !important;
1026
+ }
1027
+ .pl-5 {
1028
+ padding-left: 3rem !important;
1029
+ }
1030
+
1031
+ .pr-0 {
1032
+ padding-right: 0 !important;
1033
+ }
1034
+ .pr-1 {
1035
+ padding-right: 0.25rem !important;
1036
+ }
1037
+ .pr-2 {
1038
+ padding-right: 0.5rem !important;
1039
+ }
1040
+ .pr-3 {
1041
+ padding-right: 1rem !important;
1042
+ }
1043
+ .pr-4 {
1044
+ padding-right: 1.5rem !important;
1045
+ }
1046
+ .pr-5 {
1047
+ padding-right: 3rem !important;
1048
+ }
1049
+
1050
+ /* ==========================================================================
1051
+ 9. Display Utilities
1052
+ ========================================================================== */
1053
+ .d-none {
1054
+ display: none !important;
1055
+ }
1056
+ .d-block {
1057
+ display: block !important;
1058
+ }
1059
+ .d-inline {
1060
+ display: inline !important;
1061
+ }
1062
+ .d-inline-block {
1063
+ display: inline-block !important;
1064
+ }
1065
+ .d-flex {
1066
+ display: flex !important;
1067
+ }
1068
+ .d-inline-flex {
1069
+ display: inline-flex !important;
1070
+ }
1071
+ .d-grid {
1072
+ display: grid !important;
1073
+ }
1074
+ .d-inline-grid {
1075
+ display: inline-grid !important;
1076
+ }
1077
+ .d-table {
1078
+ display: table !important;
1079
+ }
1080
+ .d-table-row {
1081
+ display: table-row !important;
1082
+ }
1083
+ .d-table-cell {
1084
+ display: table-cell !important;
1085
+ }
1086
+
1087
+ /* ==========================================================================
1088
+ 10. Text Utilities
1089
+ ========================================================================== */
1090
+ .text-center {
1091
+ text-align: center !important;
1092
+ }
1093
+ .text-left {
1094
+ text-align: left !important;
1095
+ }
1096
+ .text-right {
1097
+ text-align: right !important;
1098
+ }
1099
+ .text-justify {
1100
+ text-align: justify !important;
1101
+ }
1102
+ .text-uppercase {
1103
+ text-transform: uppercase !important;
1104
+ }
1105
+ .text-lowercase {
1106
+ text-transform: lowercase !important;
1107
+ }
1108
+ .text-capitalize {
1109
+ text-transform: capitalize !important;
1110
+ }
1111
+ .font-weight-bold {
1112
+ font-weight: 700 !important;
1113
+ }
1114
+ .font-weight-normal {
1115
+ font-weight: 400 !important;
1116
+ }
1117
+ .font-weight-light {
1118
+ font-weight: 300 !important;
1119
+ }
1120
+ .font-italic {
1121
+ font-style: italic !important;
1122
+ }
1123
+ .font-normal {
1124
+ font-style: normal !important;
1125
+ }
1126
+ .text-nowrap {
1127
+ white-space: nowrap !important;
1128
+ }
1129
+ .text-truncate {
1130
+ overflow: hidden;
1131
+ text-overflow: ellipsis;
1132
+ white-space: nowrap;
1133
+ }
1134
+ .text-decoration-none {
1135
+ text-decoration: none !important;
1136
+ }
1137
+ .text-decoration-underline {
1138
+ text-decoration: underline !important;
1139
+ }
1140
+
1141
+ /* ==========================================================================
1142
+ 11. Border Utilities
1143
+ ========================================================================== */
1144
+ .border {
1145
+ border: 1px solid #dee2e6 !important;
1146
+ }
1147
+ .border-top {
1148
+ border-top: 1px solid #dee2e6 !important;
1149
+ }
1150
+ .border-bottom {
1151
+ border-bottom: 1px solid #dee2e6 !important;
1152
+ }
1153
+ .border-left {
1154
+ border-left: 1px solid #dee2e6 !important;
1155
+ }
1156
+ .border-right {
1157
+ border-right: 1px solid #dee2e6 !important;
1158
+ }
1159
+ .border-0 {
1160
+ border: 0 !important;
1161
+ }
1162
+ .border-top-0 {
1163
+ border-top: 0 !important;
1164
+ }
1165
+ .border-bottom-0 {
1166
+ border-bottom: 0 !important;
1167
+ }
1168
+ .border-left-0 {
1169
+ border-left: 0 !important;
1170
+ }
1171
+ .border-right-0 {
1172
+ border-right: 0 !important;
1173
+ }
1174
+
1175
+ /* Border Colors */
1176
+ .border-primary {
1177
+ border-color: #32cd32 !important;
1178
+ }
1179
+ .border-secondary {
1180
+ border-color: #6c757d !important;
1181
+ }
1182
+ .border-success {
1183
+ border-color: #28a745 !important;
1184
+ }
1185
+ .border-danger {
1186
+ border-color: #dc3545 !important;
1187
+ }
1188
+ .border-warning {
1189
+ border-color: #ffc107 !important;
1190
+ }
1191
+ .border-info {
1192
+ border-color: #17a2b8 !important;
1193
+ }
1194
+ .border-light {
1195
+ border-color: #f8f9fa !important;
1196
+ }
1197
+ .border-dark {
1198
+ border-color: #343a40 !important;
1199
+ }
1200
+ .border-white {
1201
+ border-color: #fff !important;
1202
+ }
1203
+
1204
+ /* ==========================================================================
1205
+ 12. Rounded Utilities
1206
+ ========================================================================== */
1207
+ .rounded {
1208
+ border-radius: 0.25rem !important;
1209
+ }
1210
+ .rounded-sm {
1211
+ border-radius: 0.2rem !important;
1212
+ }
1213
+ .rounded-lg {
1214
+ border-radius: 0.3rem !important;
1215
+ }
1216
+ .rounded-circle {
1217
+ border-radius: 50% !important;
1218
+ }
1219
+ .rounded-pill {
1220
+ border-radius: 50rem !important;
1221
+ }
1222
+ .rounded-0 {
1223
+ border-radius: 0 !important;
1224
+ }
1225
+ .rounded-top {
1226
+ border-top-left-radius: 0.25rem !important;
1227
+ border-top-right-radius: 0.25rem !important;
1228
+ }
1229
+ .rounded-bottom {
1230
+ border-bottom-left-radius: 0.25rem !important;
1231
+ border-bottom-right-radius: 0.25rem !important;
1232
+ }
1233
+ .rounded-left {
1234
+ border-top-left-radius: 0.25rem !important;
1235
+ border-bottom-left-radius: 0.25rem !important;
1236
+ }
1237
+ .rounded-right {
1238
+ border-top-right-radius: 0.25rem !important;
1239
+ border-bottom-right-radius: 0.25rem !important;
1240
+ }
1241
+
1242
+ /* ==========================================================================
1243
+ 13. Shadow Utilities
1244
+ ========================================================================== */
1245
+ .shadow {
1246
+ box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
1247
+ }
1248
+
1249
+ .shadow-sm {
1250
+ box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
1251
+ }
1252
+
1253
+ .shadow-lg {
1254
+ box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
1255
+ }
1256
+
1257
+ .shadow-none {
1258
+ box-shadow: none !important;
1259
+ }
1260
+
1261
+ /* ==========================================================================
1262
+ 14. Alert
1263
+ ========================================================================== */
1264
+ .alert {
1265
+ position: relative;
1266
+ padding: 0.75rem 1.25rem;
1267
+ margin-bottom: 1rem;
1268
+ border: 1px solid transparent;
1269
+ border-radius: 0.25rem;
1270
+ }
1271
+
1272
+ .alert-primary {
1273
+ color: #1d6f1d;
1274
+ background-color: #d9f7d9;
1275
+ border-color: #c9f0c9;
1276
+ }
1277
+
1278
+ .alert-success {
1279
+ color: #155724;
1280
+ background-color: #d4edda;
1281
+ border-color: #c3e6cb;
1282
+ }
1283
+
1284
+ .alert-danger {
1285
+ color: #721c24;
1286
+ background-color: #f8d7da;
1287
+ border-color: #f5c6cb;
1288
+ }
1289
+
1290
+ .alert-warning {
1291
+ color: #856404;
1292
+ background-color: #fff3cd;
1293
+ border-color: #ffeeba;
1294
+ }
1295
+
1296
+ .alert-info {
1297
+ color: #0c5460;
1298
+ background-color: #d1ecf1;
1299
+ border-color: #bee5eb;
1300
+ }
1301
+
1302
+ .alert-light {
1303
+ color: #818182;
1304
+ background-color: #fefefe;
1305
+ border-color: #fdfdfe;
1306
+ }
1307
+
1308
+ .alert-dark {
1309
+ color: #1b1e21;
1310
+ background-color: #d6d8d9;
1311
+ border-color: #c6c8ca;
1312
+ }
1313
+
1314
+ /* ==========================================================================
1315
+ 15. Code
1316
+ ========================================================================== */
1317
+ code {
1318
+ font-size: 87.5%;
1319
+ color: #e83e8c;
1320
+ word-wrap: break-word;
1321
+ }
1322
+
1323
+ pre {
1324
+ display: block;
1325
+ font-size: 87.5%;
1326
+ color: #212529;
1327
+ background-color: #f8f9fa;
1328
+ padding: 1rem;
1329
+ border-radius: 0.25rem;
1330
+ overflow-x: auto;
1331
+ margin-bottom: 1rem;
1332
+ }
1333
+
1334
+ pre code {
1335
+ font-size: inherit;
1336
+ color: inherit;
1337
+ word-break: normal;
1338
+ }
1339
+
1340
+ /* ==========================================================================
1341
+ 16. Navbar
1342
+ ========================================================================== */
1343
+ .navbar {
1344
+ position: relative;
1345
+ display: flex;
1346
+ flex-wrap: wrap;
1347
+ align-items: center;
1348
+ justify-content: space-between;
1349
+ padding: 0.5rem 1rem;
1350
+ }
1351
+
1352
+ .navbar-brand {
1353
+ display: inline-block;
1354
+ padding-top: 0.3125rem;
1355
+ padding-bottom: 0.3125rem;
1356
+ margin-right: 1rem;
1357
+ font-size: 1.25rem;
1358
+ line-height: inherit;
1359
+ white-space: nowrap;
1360
+ text-decoration: none;
1361
+ color: #212529;
1362
+ }
1363
+
1364
+ .navbar-brand:hover {
1365
+ text-decoration: none;
1366
+ }
1367
+
1368
+ .navbar-nav {
1369
+ display: flex;
1370
+ flex-direction: column;
1371
+ padding-left: 0;
1372
+ margin-bottom: 0;
1373
+ list-style: none;
1374
+ }
1375
+
1376
+ .nav-link {
1377
+ display: block;
1378
+ padding: 0.5rem 1rem;
1379
+ color: #fff;
1380
+ text-decoration: none;
1381
+ }
1382
+
1383
+ .nav-link:hover {
1384
+ color: #0056b3;
1385
+ text-decoration: none;
1386
+ }
1387
+
1388
+ /* ==========================================================================
1389
+ 17. Responsive Images
1390
+ ========================================================================== */
1391
+ .img-fluid {
1392
+ max-width: 100%;
1393
+ height: auto;
1394
+ }
1395
+
1396
+ .img-thumbnail {
1397
+ padding: 0.25rem;
1398
+ background-color: #fff;
1399
+ border: 1px solid #dee2e6;
1400
+ border-radius: 0.25rem;
1401
+ max-width: 100%;
1402
+ height: auto;
1403
+ }
1404
+
1405
+ /* ==========================================================================
1406
+ 18. Visibility
1407
+ ========================================================================== */
1408
+ .visible {
1409
+ visibility: visible !important;
1410
+ }
1411
+ .invisible {
1412
+ visibility: hidden !important;
1413
+ }
1414
+
1415
+ /* ==========================================================================
1416
+ 19. Float
1417
+ ========================================================================== */
1418
+ .float-left {
1419
+ float: left !important;
1420
+ }
1421
+ .float-right {
1422
+ float: right !important;
1423
+ }
1424
+ .float-none {
1425
+ float: none !important;
1426
+ }
1427
+
1428
+ /* ==========================================================================
1429
+ 20. Width and Height
1430
+ ========================================================================== */
1431
+ /* Width */
1432
+ .w-25 {
1433
+ width: 25% !important;
1434
+ }
1435
+ .w-50 {
1436
+ width: 50% !important;
1437
+ }
1438
+ .w-75 {
1439
+ width: 75% !important;
1440
+ }
1441
+ .w-100 {
1442
+ width: 100% !important;
1443
+ }
1444
+ .w-auto {
1445
+ width: auto !important;
1446
+ }
1447
+
1448
+ /* Height */
1449
+ .h-25 {
1450
+ height: 25% !important;
1451
+ }
1452
+ .h-50 {
1453
+ height: 50% !important;
1454
+ }
1455
+ .h-75 {
1456
+ height: 75% !important;
1457
+ }
1458
+ .h-100 {
1459
+ height: 100% !important;
1460
+ }
1461
+ .h-auto {
1462
+ height: auto !important;
1463
+ }
1464
+
1465
+ /* Viewport Height */
1466
+ .vh-100 {
1467
+ height: 100vh !important;
1468
+ }
1469
+ .min-vh-100 {
1470
+ min-height: 100vh !important;
1471
+ }
1472
+
1473
+ /* Viewport Width */
1474
+ .vw-100 {
1475
+ width: 100vw !important;
1476
+ }
1477
+ .min-vw-100 {
1478
+ min-width: 100vw !important;
1479
+ }
1480
+
1481
+ /* ==========================================================================
1482
+ 21. Position
1483
+ ========================================================================== */
1484
+ .position-static {
1485
+ position: static !important;
1486
+ }
1487
+ .position-relative {
1488
+ position: relative !important;
1489
+ }
1490
+ .position-absolute {
1491
+ position: absolute !important;
1492
+ }
1493
+ .position-fixed {
1494
+ position: fixed !important;
1495
+ }
1496
+ .position-sticky {
1497
+ position: sticky !important;
1498
+ }
1499
+
1500
+ /* Position Values */
1501
+ .top-0 {
1502
+ top: 0 !important;
1503
+ }
1504
+ .bottom-0 {
1505
+ bottom: 0 !important;
1506
+ }
1507
+ .left-0 {
1508
+ left: 0 !important;
1509
+ }
1510
+ .right-0 {
1511
+ right: 0 !important;
1512
+ }
1513
+
1514
+ /* ==========================================================================
1515
+ 22. Overflow
1516
+ ========================================================================== */
1517
+ .overflow-auto {
1518
+ overflow: auto !important;
1519
+ }
1520
+ .overflow-hidden {
1521
+ overflow: hidden !important;
1522
+ }
1523
+ .overflow-visible {
1524
+ overflow: visible !important;
1525
+ }
1526
+ .overflow-scroll {
1527
+ overflow: scroll !important;
1528
+ }
1529
+
1530
+ /* ==========================================================================
1531
+ 23. Custom Lime Framework Classes
1532
+ ========================================================================== */
1533
+ .border-lime {
1534
+ border-color: #32cd32 !important;
1535
+ }
1536
+ .text-lime {
1537
+ color: #32cd32 !important;
1538
+ }
1539
+ .bg-lime {
1540
+ background-color: #32cd32 !important;
1541
+ color: white;
1542
+ }
1543
+ .btn-lime {
1544
+ color: #fff;
1545
+ background-color: #32cd32;
1546
+ border-color: #32cd32;
1547
+ }
1548
+ .btn-lime:hover {
1549
+ background-color: #2db82d;
1550
+ border-color: #28a428;
1551
+ }
1552
+
1553
+ /* ==========================================================================
1554
+ 24. Responsive Utilities
1555
+ ========================================================================== */
1556
+ /* Extra small devices (portrait phones, less than 576px) */
1557
+ @media (max-width: 575.98px) {
1558
+ .d-sm-none {
1559
+ display: none !important;
1560
+ }
1561
+ .d-sm-block {
1562
+ display: block !important;
1563
+ }
1564
+ .d-sm-inline {
1565
+ display: inline !important;
1566
+ }
1567
+ .d-sm-inline-block {
1568
+ display: inline-block !important;
1569
+ }
1570
+ .d-sm-flex {
1571
+ display: flex !important;
1572
+ }
1573
+ .d-sm-inline-flex {
1574
+ display: inline-flex !important;
1575
+ }
1576
+ }
1577
+
1578
+ /* Small devices (landscape phones, 576px and up) */
1579
+ @media (min-width: 576px) and (max-width: 767.98px) {
1580
+ .d-md-none {
1581
+ display: none !important;
1582
+ }
1583
+ .d-md-block {
1584
+ display: block !important;
1585
+ }
1586
+ .d-md-inline {
1587
+ display: inline !important;
1588
+ }
1589
+ .d-md-inline-block {
1590
+ display: inline-block !important;
1591
+ }
1592
+ .d-md-flex {
1593
+ display: flex !important;
1594
+ }
1595
+ .d-md-inline-flex {
1596
+ display: inline-flex !important;
1597
+ }
1598
+ }
1599
+
1600
+ /* Medium devices (tablets, 768px and up) */
1601
+ @media (min-width: 768px) and (max-width: 991.98px) {
1602
+ .d-lg-none {
1603
+ display: none !important;
1604
+ }
1605
+ .d-lg-block {
1606
+ display: block !important;
1607
+ }
1608
+ .d-lg-inline {
1609
+ display: inline !important;
1610
+ }
1611
+ .d-lg-inline-block {
1612
+ display: inline-block !important;
1613
+ }
1614
+ .d-lg-flex {
1615
+ display: flex !important;
1616
+ }
1617
+ .d-lg-inline-flex {
1618
+ display: inline-flex !important;
1619
+ }
1620
+ }
1621
+
1622
+ /* Large devices (desktops, 992px and up) */
1623
+ @media (min-width: 992px) and (max-width: 1199.98px) {
1624
+ .d-xl-none {
1625
+ display: none !important;
1626
+ }
1627
+ .d-xl-block {
1628
+ display: block !important;
1629
+ }
1630
+ .d-xl-inline {
1631
+ display: inline !important;
1632
+ }
1633
+ .d-xl-inline-block {
1634
+ display: inline-block !important;
1635
+ }
1636
+ .d-xl-flex {
1637
+ display: flex !important;
1638
+ }
1639
+ .d-xl-inline-flex {
1640
+ display: inline-flex !important;
1641
+ }
1642
+ }
1643
+
1644
+ /* Extra large devices (large desktops, 1200px and up) */
1645
+ @media (min-width: 1200px) {
1646
+ .d-xxl-none {
1647
+ display: none !important;
1648
+ }
1649
+ .d-xxl-block {
1650
+ display: block !important;
1651
+ }
1652
+ .d-xxl-inline {
1653
+ display: inline !important;
1654
+ }
1655
+ .d-xxl-inline-block {
1656
+ display: inline-block !important;
1657
+ }
1658
+ .d-xxl-flex {
1659
+ display: flex !important;
1660
+ }
1661
+ .d-xxl-inline-flex {
1662
+ display: inline-flex !important;
1663
+ }
1664
+ }
1665
+
1666
+ /* Print */
1667
+ @media print {
1668
+ .d-print-none {
1669
+ display: none !important;
1670
+ }
1671
+ .d-print-block {
1672
+ display: block !important;
1673
+ }
1674
+ .d-print-inline {
1675
+ display: inline !important;
1676
+ }
1677
+ .d-print-inline-block {
1678
+ display: inline-block !important;
1679
+ }
1680
+ }