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.
@@ -0,0 +1,973 @@
1
+ /*!
2
+ * ==========================================================
3
+ * Name: Lime CSS Framework Documentation
4
+ * Version: 1.0.0
5
+ * Description: Documentation website styles for Lime CSS Framework
6
+ * Author: Shaik Obydullah
7
+ * Author URI: https://obydullah.com
8
+ * ==========================================================
9
+ */
10
+
11
+ /* ==========================================================================
12
+ 1. CSS Variables and Base Styles
13
+ ========================================================================== */
14
+
15
+ :root {
16
+ --primary-color: #32cd32;
17
+ --primary-dark: #28a428;
18
+ --primary-light: #80d080;
19
+ --sidebar-width: 280px;
20
+ --header-height: 70px;
21
+ }
22
+
23
+ * {
24
+ margin: 0;
25
+ padding: 0;
26
+ box-sizing: border-box;
27
+ }
28
+
29
+ body {
30
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
31
+ line-height: 1.6;
32
+ color: #333;
33
+ background: #f8f9fa;
34
+ }
35
+
36
+ /* ==========================================================================
37
+ 2. Layout Components
38
+ ========================================================================== */
39
+
40
+ /* Header */
41
+ .header {
42
+ position: fixed;
43
+ top: 0;
44
+ left: 0;
45
+ right: 0;
46
+ height: var(--header-height);
47
+ background: linear-gradient(135deg, #1a2f1a 0%, #2a4a2a 100%);
48
+ border-bottom: 1px solid rgba(50, 205, 50, 0.2);
49
+ box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
50
+ z-index: 1000;
51
+ padding: 0;
52
+ }
53
+
54
+ .header .container {
55
+ height: 100%;
56
+ }
57
+
58
+ .header .d-flex {
59
+ height: 100%;
60
+ }
61
+
62
+ /* Logo */
63
+ .logo {
64
+ display: flex;
65
+ align-items: center;
66
+ text-decoration: none;
67
+ transition: all 0.3s ease;
68
+ margin-left: 0;
69
+ margin-right: auto;
70
+ }
71
+
72
+ .logo:hover {
73
+ transform: translateY(-2px);
74
+ }
75
+
76
+ .logo-icon {
77
+ width: 45px;
78
+ height: 45px;
79
+ background: linear-gradient(135deg, #32cd32 0%, #28a428 100%);
80
+ border-radius: 10px;
81
+ display: flex;
82
+ align-items: center;
83
+ justify-content: center;
84
+ margin-right: 12px;
85
+ box-shadow: 0 4px 10px rgba(50, 205, 50, 0.3);
86
+ }
87
+
88
+ .logo-icon i {
89
+ font-size: 1.5rem;
90
+ color: white;
91
+ text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
92
+ }
93
+
94
+ .logo-text {
95
+ display: flex;
96
+ flex-direction: column;
97
+ }
98
+
99
+ .logo-title {
100
+ font-size: 1.5rem;
101
+ font-weight: 800;
102
+ color: white;
103
+ line-height: 1.2;
104
+ letter-spacing: -0.5px;
105
+ }
106
+
107
+ .logo-subtitle {
108
+ font-size: 0.75rem;
109
+ color: rgba(255, 255, 255, 0.8);
110
+ font-weight: 500;
111
+ letter-spacing: 0.5px;
112
+ }
113
+
114
+ /* Version Badge in Header */
115
+ .version-badge .badge {
116
+ background: rgba(255, 255, 255, 0.15);
117
+ border: 1px solid rgba(255, 255, 255, 0.2);
118
+ font-weight: 600;
119
+ font-size: 0.75rem;
120
+ padding: 4px 10px;
121
+ border-radius: 20px;
122
+ backdrop-filter: blur(10px);
123
+ }
124
+
125
+ /* Header Actions */
126
+ .header-actions .btn {
127
+ border-radius: 6px;
128
+ padding: 6px 12px;
129
+ font-weight: 600;
130
+ font-size: 0.85rem;
131
+ transition: all 0.3s ease;
132
+ }
133
+
134
+ .header-actions .btn-outline-primary {
135
+ border-color: rgba(255, 255, 255, 0.3);
136
+ color: white;
137
+ }
138
+
139
+ .header-actions .btn-outline-primary:hover {
140
+ background: rgba(50, 205, 50, 0.2);
141
+ border-color: #32cd32;
142
+ transform: translateY(-2px);
143
+ box-shadow: 0 4px 12px rgba(50, 205, 50, 0.2);
144
+ }
145
+
146
+ .header-actions .btn-dark {
147
+ background: rgba(0, 0, 0, 0.3);
148
+ border-color: rgba(255, 255, 255, 0.1);
149
+ color: white;
150
+ }
151
+
152
+ .header-actions .btn-dark:hover {
153
+ background: #24292e;
154
+ border-color: #24292e;
155
+ transform: translateY(-2px);
156
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
157
+ }
158
+
159
+ /* Menu Toggle */
160
+ .menu-toggle {
161
+ display: none;
162
+ background: rgba(255, 255, 255, 0.1);
163
+ border: 1px solid rgba(255, 255, 255, 0.2);
164
+ border-radius: 6px;
165
+ width: 44px;
166
+ height: 44px;
167
+ align-items: center;
168
+ justify-content: center;
169
+ color: white;
170
+ font-size: 1.25rem;
171
+ cursor: pointer;
172
+ transition: all 0.3s ease;
173
+ backdrop-filter: blur(10px);
174
+ border: none;
175
+ margin-left: auto;
176
+ }
177
+
178
+ .menu-toggle:hover {
179
+ background: rgba(255, 255, 255, 0.2);
180
+ transform: translateY(-2px);
181
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
182
+ }
183
+
184
+ /* Sidebar Navigation */
185
+ .sidebar {
186
+ position: fixed;
187
+ top: var(--header-height);
188
+ left: 0;
189
+ width: var(--sidebar-width);
190
+ height: calc(100vh - var(--header-height));
191
+ background: white;
192
+ border-right: 1px solid #dee2e6;
193
+ overflow-y: auto;
194
+ padding: 2rem 0;
195
+ z-index: 999;
196
+ }
197
+
198
+ .sidebar-nav {
199
+ padding: 0;
200
+ margin: 0;
201
+ list-style: none;
202
+ }
203
+
204
+ .sidebar-nav > li {
205
+ margin-bottom: 0.5rem;
206
+ }
207
+
208
+ .sidebar-nav a {
209
+ display: block;
210
+ padding: 0.75rem 2rem;
211
+ color: #495057;
212
+ text-decoration: none;
213
+ border-left: 3px solid transparent;
214
+ transition: all 0.3s ease;
215
+ }
216
+
217
+ .sidebar-nav a:hover,
218
+ .sidebar-nav a.active {
219
+ color: var(--primary-color);
220
+ background: rgba(50, 205, 50, 0.1);
221
+ border-left-color: var(--primary-color);
222
+ }
223
+
224
+ .sidebar-nav .nav-section {
225
+ padding: 0.5rem 2rem;
226
+ font-size: 0.875rem;
227
+ font-weight: 600;
228
+ text-transform: uppercase;
229
+ color: #6c757d;
230
+ letter-spacing: 0.5px;
231
+ margin-top: 1.5rem;
232
+ margin-bottom: 0.5rem;
233
+ }
234
+
235
+ /* Main Content Area */
236
+ .main-content {
237
+ margin-left: var(--sidebar-width);
238
+ margin-top: var(--header-height);
239
+ padding: 3rem;
240
+ min-height: calc(100vh - var(--header-height));
241
+ }
242
+
243
+ .section {
244
+ margin-bottom: 4rem;
245
+ scroll-margin-top: 6rem;
246
+ }
247
+
248
+ .section h2 {
249
+ font-size: 2rem;
250
+ margin-bottom: 1.5rem;
251
+ color: #212529;
252
+ padding-bottom: 0.75rem;
253
+ border-bottom: 2px solid var(--primary-color);
254
+ }
255
+
256
+ .section h3 {
257
+ font-size: 1.5rem;
258
+ margin: 2rem 0 1rem;
259
+ color: #343a40;
260
+ }
261
+
262
+ .section h4 {
263
+ font-size: 1.25rem;
264
+ margin: 1.5rem 0 0.75rem;
265
+ color: #495057;
266
+ }
267
+
268
+ .section p {
269
+ margin-bottom: 1.5rem;
270
+ color: #6c757d;
271
+ }
272
+
273
+ /* Footer */
274
+ .footer {
275
+ text-align: center;
276
+ padding: 2rem;
277
+ margin-top: 4rem;
278
+ border-top: 1px solid #dee2e6;
279
+ color: #6c757d;
280
+ background: white;
281
+ }
282
+
283
+ /* ==========================================================================
284
+ 3. Buttons & Form Elements
285
+ ========================================================================== */
286
+
287
+ /* Button Styles */
288
+ .btn {
289
+ display: inline-block;
290
+ font-weight: 400;
291
+ text-align: center;
292
+ white-space: nowrap;
293
+ vertical-align: middle;
294
+ user-select: none;
295
+ border: 1px solid transparent;
296
+ padding: 0.375rem 0.75rem;
297
+ font-size: 1rem;
298
+ line-height: 1.5;
299
+ border-radius: 0.25rem;
300
+ transition: all 0.15s ease-in-out;
301
+ cursor: pointer;
302
+ text-decoration: none;
303
+ }
304
+
305
+ .btn:hover,
306
+ .btn:focus {
307
+ text-decoration: none;
308
+ outline: 0;
309
+ }
310
+
311
+ .btn:focus {
312
+ box-shadow: 0 0 0 0.2rem rgba(50, 205, 50, 0.25);
313
+ }
314
+
315
+ /* Button Colors */
316
+ .btn-primary {
317
+ color: #fff;
318
+ background-color: #32cd32;
319
+ border-color: #32cd32;
320
+ }
321
+
322
+ .btn-primary:hover {
323
+ background-color: #2db82d;
324
+ border-color: #28a428;
325
+ }
326
+
327
+ .btn-secondary {
328
+ color: #fff;
329
+ background-color: #6c757d;
330
+ border-color: #6c757d;
331
+ }
332
+
333
+ .btn-secondary:hover {
334
+ background-color: #5a6268;
335
+ border-color: #545b62;
336
+ }
337
+
338
+ .btn-success {
339
+ color: #fff;
340
+ background-color: #28a745;
341
+ border-color: #28a745;
342
+ }
343
+
344
+ .btn-success:hover {
345
+ background-color: #218838;
346
+ border-color: #1e7e34;
347
+ }
348
+
349
+ .btn-danger {
350
+ color: #fff;
351
+ background-color: #dc3545;
352
+ border-color: #dc3545;
353
+ }
354
+
355
+ .btn-danger:hover {
356
+ background-color: #c82333;
357
+ border-color: #bd2130;
358
+ }
359
+
360
+ .btn-warning {
361
+ color: #212529;
362
+ background-color: #ffc107;
363
+ border-color: #ffc107;
364
+ }
365
+
366
+ .btn-warning:hover {
367
+ background-color: #e0a800;
368
+ border-color: #d39e00;
369
+ }
370
+
371
+ .btn-info {
372
+ color: #fff;
373
+ background-color: #17a2b8;
374
+ border-color: #17a2b8;
375
+ }
376
+
377
+ .btn-info:hover {
378
+ background-color: #138496;
379
+ border-color: #117a8b;
380
+ }
381
+
382
+ .btn-light {
383
+ color: #212529;
384
+ background-color: #f8f9fa;
385
+ border-color: #f8f9fa;
386
+ }
387
+
388
+ .btn-light:hover {
389
+ background-color: #e2e6ea;
390
+ border-color: #dae0e5;
391
+ }
392
+
393
+ .btn-dark {
394
+ color: #fff;
395
+ background-color: #343a40;
396
+ border-color: #343a40;
397
+ }
398
+
399
+ .btn-dark:hover {
400
+ background-color: #23272b;
401
+ border-color: #1d2124;
402
+ }
403
+
404
+ .btn-lime {
405
+ color: #fff !important;
406
+ background-color: #32cd32 !important;
407
+ border-color: #32cd32 !important;
408
+ }
409
+
410
+ .btn-lime:hover {
411
+ background-color: #2db82d !important;
412
+ border-color: #28a428 !important;
413
+ }
414
+
415
+ /* Outline Buttons */
416
+ .btn-outline-primary {
417
+ color: #32cd32;
418
+ background-color: transparent;
419
+ border: 1px solid #32cd32;
420
+ }
421
+
422
+ .btn-outline-primary:hover {
423
+ color: #fff;
424
+ background-color: #32cd32;
425
+ border-color: #32cd32;
426
+ }
427
+
428
+ .btn-outline-secondary {
429
+ color: #6c757d;
430
+ background-color: transparent;
431
+ border: 1px solid #6c757d;
432
+ }
433
+
434
+ .btn-outline-secondary:hover {
435
+ color: #fff;
436
+ background-color: #6c757d;
437
+ border-color: #6c757d;
438
+ }
439
+
440
+ .btn-outline-success {
441
+ color: #28a745;
442
+ background-color: transparent;
443
+ border: 1px solid #28a745;
444
+ }
445
+
446
+ .btn-outline-success:hover {
447
+ color: #fff;
448
+ background-color: #28a745;
449
+ border-color: #28a745;
450
+ }
451
+
452
+ .btn-outline-danger {
453
+ color: #dc3545;
454
+ background-color: transparent;
455
+ border: 1px solid #dc3545;
456
+ }
457
+
458
+ .btn-outline-danger:hover {
459
+ color: #fff;
460
+ background-color: #dc3545;
461
+ border-color: #dc3545;
462
+ }
463
+
464
+ .btn-outline-warning {
465
+ color: #ffc107;
466
+ background-color: transparent;
467
+ border: 1px solid #ffc107;
468
+ }
469
+
470
+ .btn-outline-warning:hover {
471
+ color: #212529;
472
+ background-color: #ffc107;
473
+ border-color: #ffc107;
474
+ }
475
+
476
+ .btn-outline-info {
477
+ color: #17a2b8;
478
+ background-color: transparent;
479
+ border: 1px solid #17a2b8;
480
+ }
481
+
482
+ .btn-outline-info:hover {
483
+ color: #fff;
484
+ background-color: #17a2b8;
485
+ border-color: #17a2b8;
486
+ }
487
+
488
+ .btn-outline-light {
489
+ color: #f8f9fa;
490
+ background-color: transparent;
491
+ border: 1px solid #f8f9fa;
492
+ }
493
+
494
+ .btn-outline-light:hover {
495
+ color: #212529;
496
+ background-color: #f8f9fa;
497
+ border-color: #f8f9fa;
498
+ }
499
+
500
+ .btn-outline-dark {
501
+ color: #343a40;
502
+ background-color: transparent;
503
+ border: 1px solid #343a40;
504
+ }
505
+
506
+ .btn-outline-dark:hover {
507
+ color: #fff;
508
+ background-color: #343a40;
509
+ border-color: #343a40;
510
+ }
511
+
512
+ /* Button Sizes */
513
+ .btn-lg {
514
+ padding: 0.5rem 1rem;
515
+ font-size: 1.25rem;
516
+ border-radius: 0.3rem;
517
+ }
518
+
519
+ .btn-sm {
520
+ padding: 0.25rem 0.5rem;
521
+ font-size: 0.875rem;
522
+ border-radius: 0.2rem;
523
+ }
524
+
525
+ .btn-block {
526
+ display: block;
527
+ width: 100%;
528
+ }
529
+
530
+ /* Button Styles for Navbar Integration */
531
+ .nav-link.btn {
532
+ padding: 0.25rem 0.5rem !important;
533
+ margin: 0;
534
+ }
535
+
536
+ .btn-outline-light {
537
+ border-color: #f8f9fa;
538
+ }
539
+
540
+ /* ==========================================================================
541
+ 4. Documentation Components
542
+ ========================================================================== */
543
+
544
+ /* Code Blocks */
545
+ .code-block {
546
+ background: #f8f9fa;
547
+ border: 1px solid #dee2e6;
548
+ border-radius: 0.375rem;
549
+ padding: 1.5rem;
550
+ margin: 1.5rem 0;
551
+ overflow-x: auto;
552
+ }
553
+
554
+ .code-block pre {
555
+ margin: 0;
556
+ font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
557
+ font-size: 0.875rem;
558
+ line-height: 1.5;
559
+ }
560
+
561
+ .code-block code {
562
+ color: #e83e8c;
563
+ }
564
+
565
+ .code-block .language-html {
566
+ color: #212529;
567
+ }
568
+
569
+ /* Component Demo */
570
+ .component-demo {
571
+ background: white;
572
+ border: 1px solid #dee2e6;
573
+ border-radius: 0.375rem;
574
+ padding: 2rem;
575
+ margin: 1.5rem 0;
576
+ }
577
+
578
+ .component-demo .demo-title {
579
+ font-size: 1.1rem;
580
+ font-weight: 600;
581
+ margin-bottom: 1rem;
582
+ color: #495057;
583
+ }
584
+
585
+ /* Grid Demo */
586
+ .grid-demo .row {
587
+ margin-bottom: 1rem;
588
+ }
589
+
590
+ .grid-demo [class*="col"] {
591
+ background: rgba(50, 205, 50, 0.1);
592
+ border: 1px solid rgba(50, 205, 50, 0.3);
593
+ padding: 1rem;
594
+ text-align: center;
595
+ font-weight: 500;
596
+ }
597
+
598
+ /* Color Swatches */
599
+ .color-swatches {
600
+ display: grid;
601
+ grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
602
+ gap: 1.5rem;
603
+ margin: 1.5rem 0;
604
+ }
605
+
606
+ .color-swatch {
607
+ border-radius: 0.375rem;
608
+ overflow: hidden;
609
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
610
+ }
611
+
612
+ .color-swatch .swatch {
613
+ height: 100px;
614
+ display: flex;
615
+ align-items: center;
616
+ justify-content: center;
617
+ font-weight: 600;
618
+ color: white;
619
+ }
620
+
621
+ .color-swatch .swatch.light {
622
+ color: #212529;
623
+ }
624
+
625
+ .color-swatch .info {
626
+ padding: 1rem;
627
+ background: white;
628
+ border-top: 1px solid #dee2e6;
629
+ }
630
+
631
+ .color-swatch .name {
632
+ font-weight: 600;
633
+ margin-bottom: 0.25rem;
634
+ }
635
+
636
+ .color-swatch .value {
637
+ font-family: "Monaco", "Menlo", monospace;
638
+ font-size: 0.875rem;
639
+ color: #6c757d;
640
+ }
641
+
642
+ /* Alert Demo */
643
+ .alert-demo .alert {
644
+ margin-bottom: 1rem;
645
+ }
646
+
647
+ /* Table Demo */
648
+ .table-demo {
649
+ overflow-x: auto;
650
+ }
651
+
652
+ /* ==========================================================================
653
+ 5. Changelog Components
654
+ ========================================================================== */
655
+
656
+ /* Main container */
657
+ .changelog-component {
658
+ background: #fff;
659
+ border: 1px solid #e9ecef;
660
+ border-radius: 0.375rem;
661
+ padding: 1.5rem;
662
+ margin-bottom: 2rem;
663
+ }
664
+
665
+ /* Version header */
666
+ .version-header {
667
+ display: flex;
668
+ align-items: center;
669
+ justify-content: space-between;
670
+ border-bottom: 2px solid #32cd32;
671
+ padding-bottom: 0.75rem;
672
+ margin-bottom: 1rem;
673
+ }
674
+
675
+ .version-title {
676
+ font-size: 1.5rem;
677
+ font-weight: 600;
678
+ color: #212529;
679
+ margin: 0;
680
+ }
681
+
682
+ /* Version badges */
683
+ .version-badge {
684
+ display: inline-block;
685
+ padding: 0.35rem 0.65rem;
686
+ font-size: 0.875rem;
687
+ font-weight: 600;
688
+ line-height: 1;
689
+ border-radius: 0.25rem;
690
+ margin-left: 0.5rem;
691
+ }
692
+
693
+ .badge-latest {
694
+ background-color: #32cd32;
695
+ color: white;
696
+ }
697
+
698
+ .badge-planned {
699
+ background-color: #ffc107;
700
+ color: #212529;
701
+ }
702
+
703
+ /* Release info */
704
+ .release-info {
705
+ color: #6c757d;
706
+ font-size: 0.95rem;
707
+ margin-bottom: 1.25rem;
708
+ }
709
+
710
+ .release-date {
711
+ font-weight: 600;
712
+ color: #495057;
713
+ }
714
+
715
+ /* Features section */
716
+ .features-section {
717
+ margin-top: 1.5rem;
718
+ }
719
+
720
+ .section-title {
721
+ font-size: 1.25rem;
722
+ font-weight: 600;
723
+ color: #343a40;
724
+ margin-bottom: 0.75rem;
725
+ }
726
+
727
+ /* Feature lists */
728
+ .feature-list {
729
+ list-style: none;
730
+ padding-left: 0;
731
+ margin-bottom: 1.5rem;
732
+ }
733
+
734
+ .feature-item {
735
+ position: relative;
736
+ padding-left: 1.5rem;
737
+ margin-bottom: 0.75rem;
738
+ line-height: 1.6;
739
+ }
740
+
741
+ .feature-item::before {
742
+ content: "✓";
743
+ position: absolute;
744
+ left: 0;
745
+ color: #32cd32;
746
+ font-weight: bold;
747
+ }
748
+
749
+ /* Callout boxes */
750
+ .changelog-callout {
751
+ background-color: #f8f9fa;
752
+ border-left: 4px solid #32cd32;
753
+ padding: 1rem 1.25rem;
754
+ margin: 1.5rem 0;
755
+ border-radius: 0 0.25rem 0.25rem 0;
756
+ }
757
+
758
+ .callout-note {
759
+ border-left-color: #17a2b8;
760
+ background-color: #f1f9fb;
761
+ }
762
+
763
+ /* Code block */
764
+ .version-code {
765
+ background-color: #f8f9fa;
766
+ border: 1px solid #e9ecef;
767
+ border-radius: 0.375rem;
768
+ padding: 1.25rem;
769
+ margin-top: 1.5rem;
770
+ }
771
+
772
+ .version-code pre {
773
+ margin: 0;
774
+ overflow-x: auto;
775
+ }
776
+
777
+ .version-code code {
778
+ font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
779
+ font-size: 0.875rem;
780
+ color: #333;
781
+ }
782
+
783
+ /* Support table */
784
+ .support-table {
785
+ width: 100%;
786
+ border-collapse: collapse;
787
+ margin-top: 1rem;
788
+ }
789
+
790
+ .support-table th {
791
+ background-color: #f8f9fa;
792
+ padding: 0.75rem;
793
+ text-align: left;
794
+ font-weight: 600;
795
+ border-bottom: 2px solid #dee2e6;
796
+ }
797
+
798
+ .support-table td {
799
+ padding: 0.75rem;
800
+ border-bottom: 1px solid #dee2e6;
801
+ }
802
+
803
+ .status-active {
804
+ color: #28a745;
805
+ font-weight: 600;
806
+ }
807
+
808
+ .status-deprecated {
809
+ color: #dc3545;
810
+ font-weight: 600;
811
+ }
812
+
813
+ /* ==========================================================================
814
+ 6. Utility Components
815
+ ========================================================================== */
816
+
817
+ /* Badges */
818
+ .badge {
819
+ display: inline-block;
820
+ padding: 0.25rem 0.5rem;
821
+ font-size: 0.75rem;
822
+ font-weight: 600;
823
+ line-height: 1;
824
+ text-align: center;
825
+ white-space: nowrap;
826
+ vertical-align: baseline;
827
+ border-radius: 0.25rem;
828
+ background: var(--primary-color);
829
+ color: white;
830
+ margin-left: 0.5rem;
831
+ }
832
+
833
+ .badge.new {
834
+ background: #dc3545;
835
+ }
836
+
837
+ /* Callouts */
838
+ .callout {
839
+ padding: 1.5rem;
840
+ margin: 1.5rem 0;
841
+ border-left: 4px solid var(--primary-color);
842
+ background: rgba(50, 205, 50, 0.05);
843
+ border-radius: 0 0.375rem 0.375rem 0;
844
+ }
845
+
846
+ .callout.info {
847
+ border-left-color: #17a2b8;
848
+ background: rgba(23, 162, 184, 0.05);
849
+ }
850
+
851
+ .callout.warning {
852
+ border-left-color: #ffc107;
853
+ background: rgba(255, 193, 7, 0.05);
854
+ }
855
+
856
+ /* ==========================================================================
857
+ 7. Interactive Elements
858
+ ========================================================================== */
859
+
860
+ /* Back to top */
861
+ .back-to-top {
862
+ position: fixed;
863
+ bottom: 2rem;
864
+ right: 2rem;
865
+ width: 50px;
866
+ height: 50px;
867
+ background: var(--primary-color);
868
+ color: white;
869
+ border-radius: 50%;
870
+ display: flex;
871
+ align-items: center;
872
+ justify-content: center;
873
+ text-decoration: none;
874
+ box-shadow: 0 4px 12px rgba(50, 205, 50, 0.3);
875
+ z-index: 100;
876
+ transition: all 0.3s ease;
877
+ }
878
+
879
+ .back-to-top:hover {
880
+ background: var(--primary-dark);
881
+ transform: translateY(-3px);
882
+ }
883
+
884
+ /* Sidebar Overlay */
885
+ .sidebar-overlay {
886
+ display: none;
887
+ position: fixed;
888
+ top: 0;
889
+ left: 0;
890
+ right: 0;
891
+ bottom: 0;
892
+ background: rgba(0, 0, 0, 0.5);
893
+ z-index: 998;
894
+ }
895
+
896
+ .sidebar-overlay.active {
897
+ display: block;
898
+ }
899
+
900
+ /* ==========================================================================
901
+ 8. Animations
902
+ ========================================================================== */
903
+
904
+ @keyframes leafFloat {
905
+ 0%,
906
+ 100% {
907
+ transform: translateY(0) rotate(0deg);
908
+ }
909
+ 50% {
910
+ transform: translateY(-3px) rotate(5deg);
911
+ }
912
+ }
913
+
914
+ .logo-icon i {
915
+ animation: leafFloat 3s ease-in-out infinite;
916
+ }
917
+
918
+ /* ==========================================================================
919
+ 9. Responsive Design
920
+ ========================================================================== */
921
+
922
+ @media (max-width: 992px) {
923
+ .sidebar {
924
+ transform: translateX(-100%);
925
+ transition: transform 0.3s ease;
926
+ }
927
+
928
+ .sidebar.active {
929
+ transform: translateX(0);
930
+ }
931
+
932
+ .main-content {
933
+ margin-left: 0;
934
+ }
935
+
936
+ .menu-toggle {
937
+ display: flex;
938
+ }
939
+ }
940
+
941
+ @media (max-width: 768px) {
942
+ .logo-icon {
943
+ width: 40px;
944
+ height: 40px;
945
+ }
946
+
947
+ .logo-title {
948
+ font-size: 1.25rem;
949
+ }
950
+
951
+ .logo-subtitle {
952
+ font-size: 0.7rem;
953
+ }
954
+
955
+ .version-badge {
956
+ display: none;
957
+ }
958
+
959
+ .menu-toggle {
960
+ width: 40px;
961
+ height: 40px;
962
+ }
963
+ }
964
+
965
+ @media (max-width: 576px) {
966
+ .logo-text {
967
+ display: none;
968
+ }
969
+
970
+ .logo-icon {
971
+ margin-right: 0;
972
+ }
973
+ }