@bwew/simpl-css
v1.0.0
Published
Small css framework which contains the repetitive CSS I used to write every time I wanted to start a new project.
Downloads
1
Readme
simpl.css
simpl.css is a small css framework which contains the repetitive CSS I used to write every time I wanted to start a new project.
You can use it for yourself by downloading the simpl.min.css
file from /dist
and linking it to your html.
<link rel="stylesheet" href="simpl.min.css" />
Or link it from unpkg
<link
rel="stylesheet"
href="https://unpkg.com/@bwew/[email protected]/dist/simpl.min.css"
/>
If you want to build the file manually (for some reason) or just have a look at how all this works you can do the following:
git clone https://github.com/bLaCkwEw/simpl.css
cd simpl.css
npm install
After you've done that you can npm run dev
to run a dev server at localhost:3000 and npm run build
to build the minified CSS file to /dist
.