All Projects → ThinkUniform → uniformcss

ThinkUniform / uniformcss

Licence: MIT license
A fully configurable utility class generator and CSS framework built for Sass projects.

Programming Languages

SCSS
7915 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to uniformcss

brevis
CSS at scale
Stars: ✭ 62 (-53.38%)
Mutual labels:  css-framework, atomic-css, utility-first
atomize
A library of atomic CSS classes.
Stars: ✭ 51 (-61.65%)
Mutual labels:  css-framework, atomic-css
assembler
A modern UI framework
Stars: ✭ 171 (+28.57%)
Mutual labels:  css-framework, utility-first
steller-css
⛰️ A utility-first CSS framework that serves as the foundation of your design system
Stars: ✭ 14 (-89.47%)
Mutual labels:  css-framework, atomic-css
you-dont-need-bootstrap
Why you might not need any CSS framework
Stars: ✭ 63 (-52.63%)
Mutual labels:  css-framework
emma.css
🍴 Emma.css { utility-classes: emmet-like; }
Stars: ✭ 53 (-60.15%)
Mutual labels:  css-framework
Awesome-CSS-Frameworks-and-UI-Libraries
Extensive List of CSS Frameworks and UI Libraries.
Stars: ✭ 110 (-17.29%)
Mutual labels:  css-framework
minstyle.io
👌 A simple CSS Framework, including dark mode.
Stars: ✭ 58 (-56.39%)
Mutual labels:  css-framework
strawberry
A new flexbox based CSS micro-framework.
Stars: ✭ 71 (-46.62%)
Mutual labels:  css-framework
cra-tailwindcss-in-js
Integrate Tailwind CSS in a Create React App setup using css-in-js solutions
Stars: ✭ 35 (-73.68%)
Mutual labels:  css-framework
kahi-ui
Straight-forward Svelte UI for the Web
Stars: ✭ 169 (+27.07%)
Mutual labels:  css-framework
vue-cirrus
Vue components for the Cirrus CSS framework.
Stars: ✭ 43 (-67.67%)
Mutual labels:  css-framework
sass-structure
Sass folder structure => organizing project files.
Stars: ✭ 32 (-75.94%)
Mutual labels:  css-framework
holiday.css
A minimalist classless CSS theme
Stars: ✭ 88 (-33.83%)
Mutual labels:  css-framework
adorable-css
Rapid On-Demand Atomic CSS Framework
Stars: ✭ 131 (-1.5%)
Mutual labels:  atomic-css
swatch
A lightweight, modern theming library based on CSS variables and the setter/getter pattern.
Stars: ✭ 14 (-89.47%)
Mutual labels:  css-framework
hydrogencss
Atomic CSS for CSS Modules
Stars: ✭ 13 (-90.23%)
Mutual labels:  atomic-css
basis
A lightweight responsive Stylus/CSS framework based on flexible box.
Stars: ✭ 27 (-79.7%)
Mutual labels:  css-framework
mobius-gui
🎨 Reactive & Stream & Driver based UI framework build on Mobius Utils, equipped with neumorphism-derived & utility-first styles.
Stars: ✭ 43 (-67.67%)
Mutual labels:  utility-first
Portfolio
A Next.js & Material UI portfolio that stylizes markdown files from the GitHub API and Contentful CMS.
Stars: ✭ 18 (-86.47%)
Mutual labels:  css-framework

Logo

UniformCSS

A fully configurable utility class generator and
CSS framework built for Sass projects.
Explore the docs »

View Site · Report Bug · Request Feature




Table of Contents
  1. Introduction
  2. Getting Started
  3. Community
  4. Contributing
  5. License
  6. Contact

Introduction

UniformCSS is a fully configurable utility generator and CSS framework built entirely in Sass. Get the power of a utility-first workflow without losing the productiveness of Sass. To see documentation, visit uniformcss.com

  • Load and configure Uniform directly in Sass
  • Build complex UI without ever touching your CSS
  • Customizable CSS variable support
  • Strict and consistent naming convention
  • Collapse pseudo variants with comma compression
  • Change utility shorthands, delimiters, and more
  • Extract reusable components with apply() mixin
  • Access theme settings with API functions
  • Enjoy a wide range of colors, tints, shades, and opacities
  • Built-in custom keyframe and animation support

Getting Started

Here are the instructions to build your first uniform.css. Please make sure you have the prerequisites installed before continuing on with the installation steps.

Prerequisites

Before you get started, ensure you have the following installed.

Install Dart Sass on Mac OS X or Linux

Install Dart Sass with Homebrew on Mac OS X or Linux by running the following command.

brew install sass/sass/sass

Install Dart Sass on Windows

Install Dart Sass with Chocolatey on Windows by running the following command.

choco install sass

Load and Compile Uniform

Add Uniform as a Sass module to your main.scss project. Follow these steps to load UniformCSS, compile, and watch for changes.

  1. Clone the repository
    # Change directory to where your main sass file lives
    cd my-project/sass/
    
    # Clone project
    git clone https://github.com/ThinkUniform/uniformcss
  2. Include the Uniform module in your main.scss
    // main.scss
    @use "uniform" as *;
  3. Compile your uniform.css
    yarn uniform
  4. Alternatively, you can compile and watch for changes
    yarn uniform:watch
  5. Configure Uniform (optional)
    // main.scss
    @use "uniform" as * with (
      $config: (
        important: true,
        comma-compression: true,
        prefix: myProject,
        colors: (
          custom-color-1: red,
          custom-color-2: blue
        ),
        ...
      )
    );

Community

If you're ever stuck, need help, or wish to have a general discussion about this project, please get involved with the following community channels.

Contributing

Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated. Thanks to all the people that have contributed in making this project great!

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

License

The source code is licensed under the MIT agreement. You are more than welcome to clone and customize this repo to suit your needs.

Contact

Jin Su Park – Creator and Author
@jinsujinsupark.com

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].