Skip to content

Instantly share code, notes, and snippets.

@navstyachka
Created January 26, 2013 20:47
Show Gist options
  • Save navstyachka/4644523 to your computer and use it in GitHub Desktop.
Save navstyachka/4644523 to your computer and use it in GitHub Desktop.
A tiny list of SASS mixins and variables for starting a project.
@mixin fz($f, $z)
font-size: $f
line-height: $z
@mixin wh($w, $h)
width: $w
height: $h
@mixin oz
overflow: hidden
zoom: 1
@mixin clearfix
&:before
content: " "
display: table
&:after
content: " "
display: table
clear: both
@mixin abs
position: absolute
top: 0
right: 0
bottom: 0
left: 0
// Colors
// Main text color
$m-color: #000
// Background-color
$b-color: #fff
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment