Skip to content

Instantly share code, notes, and snippets.

@jsoningram
Last active August 29, 2015 14:27
Show Gist options
  • Save jsoningram/eb0291663609cc694f2b to your computer and use it in GitHub Desktop.
Save jsoningram/eb0291663609cc694f2b to your computer and use it in GitHub Desktop.
Base style.scss
// @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