RSS Amplifier

(untitled) · Oct 1, 2014

Sass Cheatsheet

0
Sign in to vote or save

This site does not allow itself to be embedded. You can still read it on the original site — the toolbar below keeps your place in the directory.

A Sass cheatsheet. Watching sass --watch sass:css source Comments // I will not show when compiled /* I will be shown when compiled */ source Imports @ import 'foo' ; source Variables $ foo : # 000 ! default ; $ bar : baz qux quux corge ; source Nesting Selector nesting . foo { .bar { // .foo .bar { } } } source Property nesting . foo { text: { align : center ; // .foo { text-align : center ; } }…

A Sass cheatsheet.

Watching

sass --watch sass:css

source

Comments

// I will not show when compiled

/* I will be shown when compiled */

source

Imports

@import 'foo';

source

Variables

$foo: #000 !default;
$bar: baz qux quux corge;

source

Nesting

Selector nesting

.foo {
 .bar {
 // .foo .bar { }
 }
}

source

Property nesting

.foo {
 text: {
 align: center; // .foo { text-align: center; }
 }
}

source

Parent Selectors

a {
 &:hover {
 // a:hover { }
 }
}
.bar {
 .foo & {
 // .foo .bar { }
 }
}

source

Interpolation

$foo: bar;

.baz-#{$foo} {
 // .baz-bar { }
}

source

Read on miguelmota.com

Comments

Nothing yet. Say the first thing.

    Sign in to join the conversation.