Skip to content

Instantly share code, notes, and snippets.

View artlesshand's full-sized avatar

Farzan Balkani artlesshand

View GitHub Profile
@artlesshand
artlesshand / btn-generator-s1.scss
Last active November 16, 2015 08:45
Generating buttons with Sass and a color list
$color-list: (
"white" : #FFF,
"black" : #000,
"red" : #BF6060,
"blue" : #159BC7,
"green" : #659826,
"sariinac" : #00979D,
"varchin" : #B0419E,
"darkvarchin" : #A7529D,
"vine" : #AD1336,
@artlesshand
artlesshand / headings-generator-s1.scss
Created November 16, 2015 07:48
Generate headings relatively with Sass
// whatever size and number suits you
$font-size: 1.2rem;
$i: 3;
@each $h in h6, h5, h4, h3, h2, h1 {
#{$h} {
font-size: $font-size + $i;
line-height: $font-size * 2 + $i;
font-weight: bold;
}