gsdu8g9 / siimple

Minimal CSS Framework for flat and clean designs.

Home Page:http://siimple.juanes.xyz

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

siimple

npm npm devDependency Status npm

About

siimple is a light, responsive and open source framework for design flat and clean websites. It has built in SASS/SCSS and provides a clean starting point for your web design.

You can find the documentation and the reference guide in https://siimple.juanes.xyz/docs

Getting started

First, install siimple in your project using one of the following methods:

Using bower (recomended)

Install the latest version from bower:

bower install siimple --save

Using npm

Install the latest version from npm:

npm install --save siimple

Clone the git repository

You can also clone the git repository hosted on GitHub:

git clone https://github.com/siimple/siimple.git

Usage

The main css file is located in the dist/ folder. Include it on every HTML file of your project by adding the following tag:

<link rel="stylesheet" type="text/css" href="./path/to/siimple/dist/siimple.css">

Or you can use the hosted version on jsDelivr:

<link rel="stylesheet" href="https://cdn.jsdelivr.net/siimple/VERSION/siimple.min.css">

Guides and reference are published in siimple.juanes.xyz/docs. Take a look and start creating your web page!

Using the SCSS/SASS mixins

You can use the SASS/SCSS mixins located in the scss/ folder. For this, first install siimple and all his dependencies using bower:

bower install siimple

This will create a folder called bower_components with the latest version of siimple and siimple-colors. Then, import the mixins in your .scss files by adding the following line:

@import "siimple/scss/_mixins.scss"

Remember that you must add the bower_components components to the SASS load_paths option. If you are using libsass with gulp, here is an example of usage: https://github.com/siimple/siimple/blob/master/gulpfile.js#L43.

Build siimple

First, install gulp globally:

npm install -g gulp

Then, clone this repository:

git clone https://github.com/siimple/siimple.git

Now, cd to the siimple repository and install all the develop dependencies using npm:

npm install

Install also the scss dependencies using bower:

bower install

Use gulp to compile the SCSS files and generate the .css files in the dist/ folder running the following command

gulp clean build

Also, you can generate the minimized version by running:

gulp minimize

Contribute

We appreciate all contributions to the siimple project and help make it better! Please, read the contributing guidelines before starting your contribution.

License

siimple is under the MIT license. © The siimple team.

About

Minimal CSS Framework for flat and clean designs.

http://siimple.juanes.xyz

License:MIT License


Languages

Language:CSS 89.7%Language:JavaScript 10.3%