8000 GitHub - kaushikgopal/SkeleSass: Skeleton: A Beautiful Boilerplate for Responsive, Mobile-Friendly Development (rewritten in SCSS)
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

kaushikgopal/SkeleSass

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
< 7F30 div class="overflow-hidden">
 
 

Repository files navigation

Skeleton framework in SCSS

This is essentially a personal mish-mash between the Skeleton framework and lazerwalker's sassified version.

  • All scss files are placed in the sass directory
  • Generated stylesheet is stylesheets/screen.css
  • Meddle all you want with the _custom.scss file for your specific customizations

Installation

This project now uses compass. Reuse is the new small :S

gem install compass
cd <myproject>
compass create

Usage

Unlike the original Skeleton, the sassified version is made to apply to your existing styles e.g.

.container{ @include container; }

#header {
  @include columns(16);
}
#col1, #col2, #col3 {
 @include columns(5.33);
}

Useful commands

Compile and compress the scss files:

Just go to your project folder and execute below commands:

# To compile on demand:
compass compile [path/to/project]
compass compile [path/to/project] -s nested/expanded/compact/compressed

#To monitor your project for changes and automatically recompile:
compass watch [path/to/project]

Compile and compress the scss files using just sass:

I would just use compass, but if that's not your thing use this command:

sass --watch sass:../stylesheets/ --style compressed

About

Skeleton: A Beautiful Boilerplate for Responsive, Mobile-Friendly Development (rewritten in SCSS)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Ruby 96.1%
  • JavaScript 3.9%
0