This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
Using Patterns
Use the compass command line to stamp out a pattern:
$ compass patterns
$ cd patterns/
$ compass -f blueprint -p buttons
exists patterns
directory images/buttons/
exists src
exists stylesheets
create src/buttons.sass
create images/buttons/cross.png
create images/buttons/key.png
create images/buttons/tick.png
exists stylesheets
compile src/buttons.sass
create stylesheets/buttons.css
compile src/ie.sass
identical stylesheets/ie.css
compile src/print.sass
identical stylesheets/print.css
compile src/screen.sass
identical stylesheets/screen.css
To import your new stylesheets add the following lines of HTML (or equivalent) to your webpage:
<head>
<link href="/stylesheets/buttons.css" media="screen, projection" rel="stylesheet" type="text/css" />
</head>
You can also provide your own name to scope the pattern if you want to make several:
$ compass -f blueprint -p buttons --pattern-name alternate
exists patterns
directory images/buttons/
exists src
directory src/alternate/
exists stylesheets
create src/alternate/buttons.sass
create images/buttons/cross.png
create images/buttons/key.png
create images/buttons/tick.png
exists stylesheets
directory stylesheets/alternate/
compile src/alternate/buttons.sass
create stylesheets/alternate/buttons.css
compile src/ie.sass
identical stylesheets/ie.css
compile src/print.sass
identical stylesheets/print.css
compile src/screen.sass
identical stylesheets/screen.css
To import your new stylesheets add the following lines of HTML (or equivalent) to your webpage:






