Skip to content

Instantly share code, notes, and snippets.

View navstyachka's full-sized avatar

Anastasia Mikheichyk navstyachka

View GitHub Profile
@navstyachka
navstyachka / @fontface.css
Created October 1, 2013 12:33
Css raw font-face
@font-face {
font-family: 'HeliosCondLight';
src: url('fonts/HeliosCondLight.eot');
src: url('fonts/HeliosCondLight.eot?#iefix') format('embedded-opentype'),
url('fonts/HeliosCondLight.woff') format('woff'),
url('fonts/HeliosCondLight.ttf') format('truetype'),
url('fonts/HeliosCondLight.svg#default_bold') format('svg');
font-weight: normal;
font-style: normal;
}
@navstyachka
navstyachka / gist:4644523
Created January 26, 2013 20:47
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