Last active
August 29, 2015 14:27
-
-
Save jsoningram/eb0291663609cc694f2b to your computer and use it in GitHub Desktop.
Base style.scss
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// @variables | |
$background-color: #000000; | |
$blue: #000000; | |
$red: #000000; | |
$border-color: #000000; | |
$font-family: sans-serif; | |
$font-light: 300; | |
$font-normal: 400; | |
$font-bold: 700; | |
$font-black: 900; | |
@mixin box-border($width, $style, $color) { | |
border-width: $width; | |
border-style: $style; | |
border-color: $color; | |
} | |
@mixin border-radius($radius) { | |
border-radius: $radius; | |
} | |
@mixin base-header() { | |
text-transform: uppercase; | |
} | |
@function letter-spacing($tracking) { | |
@return ($tracking / 1000) * 1em; | |
} | |
@import "../../bower_components/foundation/scss/normalize"; | |
@import "../../bower_components/foundation/scss/foundation"; | |
@import "../../bower_components/fontawesome/scss/font-awesome"; | |
html, body, h1, h2, h3, h4, h5, h6 { | |
font-family: $font-family; | |
} | |
body { | |
background: $background-color; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment