Skip to content

A modular CSS collection to set you up with all kinds of things you might need.

License

Notifications You must be signed in to change notification settings

dalailahner/noicss

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

noicss

A modular CSS collection to set you up with all kinds of things you might need.

In modern vanilla CSS.

noicss modules:

Installation:

get the whole library:

npm install noicss

or you can pick individual modules depending on your needs:

npm install noicss.reset noicss.colors noicss.toggle

Usage:

import the things you need into your CSS file:

@layer reset, colors, toggle, main;

@import url("noicss/reset") layer(reset);
@import url("noicss/colors") layer(colors);
@import url("noicss/toggle") layer(colors);

/* YOUR OWN CSS: */
@layer main {

}

or when you installed the modules individually:

@layer reset, colors, toggle, main;

@import url("noicss.reset") layer(reset);
@import url("noicss.colors") layer(colors);
@import url("noicss.toggle") layer(colors);

/* YOUR OWN CSS: */
@layer main {

}

About

A modular CSS collection to set you up with all kinds of things you might need.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published