If you are using Windows we full recommend you to install git-bash to make your life easy:
git-bash https://git-scm.com/downloads
If you are using Mac OS or Linux, just use Terminal
After install git-bash you need install the Dependencies bellow:
Ruby https://www.ruby-lang.org/
grunt http://gruntjs.com/
Now you have all dependecies to run a modern and great web system from scratch .
Before you install lovelycss check if you have all dependencies above, enter in the folder lovelycss and run that commands bellow:
npm install
that is it now you have a fresh and complete web project to start from scratch
we are using sass for better performance and organization of css , you don't need to worry about compile this , you can just use a simple command to compress your sass files in a just css file:
that is the command:
grunt sass
after run this command all of your sass files will be compiled in a just css file:
<link rel="stylesheet" href="public/stylesheets/lovelycss.dist.css">
That file will be in: public/stylesheets
we have 2 css files compiled by grunt sass:
lovelycss.dev.css for development so you can see the line and the name of file for debug.
lovelycss.dist.css for distribution when you finish your App.
├── scss/
│ ├── core/
│ ├── helpers/
│ ├── modules/
│ ├── pages/
│ ├── vendor/
core/
all media queries, typography, base, main
helpers/
colors, buttons, clearfix, mixins, main, etc...
modules/
header, footer, content, menu, main, etc...
pages/
index, login, main, etc..
vendor/
vendors ...
Douglas Deodato