nkhilicss
v2.1.1
Published
A lightweight CSS framework for efficient styling
Downloads
8
Maintainers
Readme
NkhiliCSS
NkhiliCSS is a lightweight CSS framework designed to simplify and speed up the process of styling web projects. It provides a collection of customizable CSS components and utility classes built using Sass.
Features
- Lightweight: Minimalistic and lightweight CSS framework to keep your projects fast and efficient.
- Customizable: Easily customize the framework to fit your project's design needs using Sass variables and mixins.
- Responsive: Built with responsiveness in mind, ensuring your designs look great on all devices.
- Modular: Modular architecture allows you to include only the components you need, reducing bloat.
- Easy to Use: Simple and intuitive classes make it easy to style your HTML elements.
Installation
You can install NkhiliCSS via npm or by downloading the compiled CSS files directly from the GitHub repository.
Via npm
npm install nkhilicss
Via CDN
You can include NkhiliCSS via CDN by adding the following link to your HTML file:
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/nkhilicss.min.css"
/>
Usage
Simply include the NkhiliCSS file in your HTML file and start using its classes to style your elements.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/nkhilicss.min.css"
/>
</head>
<body>
<div class="container">
<h1 class="text-blue">Welcome to NkhiliCSS</h1>
<p class="text-center md-text-left">
A lightweight CSS framework built with Sass.
</p>
<button class="btn-primary">Get Started</button>
</div>
</body>
</html>
Documentation
For complete and detailed documentation, please visit nkhilicss.web.app.
Contributing
Contributions are welcome! If you find any bugs or have suggestions for improvements, please open an issue or submit a pull request on the GitHub repository.
License
NkhiliCSS is open-source software licensed under the MIT License. See the LICENSE file for more information.