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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 Lime CSS Contributors
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,32 @@
1
+ # Lime CSS Framework
2
+
3
+ ![Lime CSS Framework](https://img.shields.io/badge/Version-1.0.0-brightgreen)
4
+ ![License](https://img.shields.io/badge/License-MIT-blue)
5
+ ![Size](https://img.shields.io/badge/Size-12%20KB-lightgrey)
6
+
7
+ A lightweight, modern CSS framework with a refreshing lime theme. Built for rapid prototyping and production-ready web development.
8
+
9
+ ## Features
10
+
11
+ - 🎨 **Lime Themed** - Fresh green color scheme as primary
12
+ - 📱 **Fully Responsive** - Mobile-first approach
13
+ - 🎯 **12-Column Grid System** - Flexbox based
14
+ - 🚀 **Lightweight** - Only 12KB minified
15
+ - 🎨 **Utility Classes** - Comprehensive spacing, text, border utilities
16
+ - 🎭 **Components** - Buttons, forms, tables, alerts, navbar
17
+ - 🌐 **Browser Support** - Modern browsers and IE11+
18
+
19
+ ## Quick Start
20
+
21
+ ### Installation
22
+
23
+ #### CDN
24
+ ```html
25
+ <!-- Latest version -->
26
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/shaik-obydullah/lime-css-framework@latest/dist/lime.min.css">
27
+
28
+ <!-- Development version -->
29
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/shaik-obydullah/lime-css-framework@latest/dist/lime.css">
30
+
31
+ <!-- CSS Variables only -->
32
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/shaik-obydullah/lime-css-framework@latest/dist/lime-variables.css">
@@ -0,0 +1,58 @@
1
+ /*!
2
+ * ==========================================================
3
+ * Lime CSS Framework - CSS Variables (Custom Properties)
4
+ * Version: 1.0.0
5
+ * ==========================================================
6
+ */
7
+
8
+ :root {
9
+ /* Primary Colors */
10
+ --lime-primary: #32cd32;
11
+ --lime-primary-dark: #28a428;
12
+ --lime-primary-light: #80d080;
13
+ --lime-primary-rgb: 50, 205, 50;
14
+
15
+ /* Theme Colors */
16
+ --blue: #007bff;
17
+ --indigo: #6610f2;
18
+ --purple: #6f42c1;
19
+ --pink: #e83e8c;
20
+ --red: #dc3545;
21
+ --orange: #fd7e14;
22
+ --yellow: #ffc107;
23
+ --green: #28a745;
24
+ --teal: #20c997;
25
+ --cyan: #17a2b8;
26
+ --white: #fff;
27
+ --gray: #6c757d;
28
+ --gray-dark: #343a40;
29
+
30
+ /* Spacing */
31
+ --spacer: 1rem;
32
+ --spacer-0: 0;
33
+ --spacer-1: 0.25rem;
34
+ --spacer-2: 0.5rem;
35
+ --spacer-3: 1rem;
36
+ --spacer-4: 1.5rem;
37
+ --spacer-5: 3rem;
38
+
39
+ /* Font */
40
+ --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
41
+ --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
42
+
43
+ /* Border */
44
+ --border-width: 1px;
45
+ --border-color: #dee2e6;
46
+ --border-radius: 0.25rem;
47
+ --border-radius-sm: 0.2rem;
48
+ --border-radius-lg: 0.3rem;
49
+
50
+ /* Box Shadow */
51
+ --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
52
+ --box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
53
+ --box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
54
+
55
+ /* Transition */
56
+ --transition-speed: 0.15s;
57
+ --transition-timing: ease-in-out;
58
+ }