A low-level functional CSS toolkit.
LowCSS is a powerful CSS utility framework built with SASS, designed to streamline your CSS development process and enable you to create beautiful, responsive web interfaces with ease. Inspired by the popular Tailwind CSS, LowCSS follows a similar structure and syntax, making it familiar and intuitive for developers already familiar with Tailwind CSS.
- SASS-based: Harness the power of SASS to create modular and maintainable CSS code.
- Intuitive Utility Classes: Use utility classes to apply styles directly to HTML elements, avoiding repetitive CSS coding.
- Responsive Design: Create responsive layouts effortlessly with built-in responsive utility classes.
- Lightweight: Keep your page load times low with optimized and minimal CSS file sizes.
- Pseudo-Class Modifiers: Apply styles to elements in specific states like hover, focus, and active.
To install LowCSS in your project, use one of the following methods:
Run the following command in your terminal:
## Install using NPM
$ npm install --save lowcss
## Install using YARN
$ yarn add lowcss
LowCSS includes a compiled CSS version, so you do not need to install any modules for using it on a static site. Just download the compiled CSS from unpkg, or include the following link to the CDN in your HTML file:
<link href="https://unpkg.com/lowcss/low.css" rel="stylesheet" />
Alternatively, you can download the CSS file directly from the releases page of this repository.
Using LowCSS is simple. Add the utility classes directly to your HTML elements to apply styles. Here's an example:
<div class="bg-blue-600 text-white p-4">
<h1 class="text-2xl">Welcome to LowCSS</h1>
<p class="mt-2">Start building stunning web interfaces with ease!</p>
</div>
Refer to the Utility Classes Documentation for a complete list of available utility classes and their usage.
Whether you are a beginner or an experienced developer, the documentation will provide you with the information you need to get the most out of the framework.
Access the LowCSS documentation at low.josemi.xyz.
This section showcases various use cases and implementations of the utility classes to inspire and guide your development process. Explore our examples at low.josemi.xyz/examples.
We welcome contributions from the community to help improve LowCSS. Whether it's bug fixes, feature enhancements, or new utility classes, your contributions are valuable. Please read our Contribution Guidelines for more information on how to contribute.
LowCSS is inspired by the amazing work of the Tailwind CSS community. We extend our gratitude to the Tailwind CSS team and contributors for their contributions to the web development community.
LowCSS is released under the MIT License. Feel free to use, modify, and distribute it as per the terms of the license.