Last active
August 29, 2015 14:02
-
-
Save tastycode/6e316b2e881ec8fe1688 to your computer and use it in GitHub Desktop.
Common
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
@import "bourbon"; | |
@import "neat"; | |
@import "mixins"; | |
html, body { | |
font-family: $font-proxima-nova; | |
font-size: $fs-root; | |
} | |
input, select, textarea { | |
font-family: $font-proxima-nova; | |
} | |
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
$white: #fff; | |
$grey1: #f2f2f2; | |
$grey2: #e1e4e4; | |
$grey3: #cccdce; | |
$grey4: #8c8d8e; | |
$grey5: #616265; | |
$grey6: #212121; | |
$blue: #5540dd; | |
$weight-ultralight: 100; | |
$weight-light: 200; | |
$weight-semibold: 600; | |
$weight-extrabold: 900; | |
$font-proxima-nova: "ProximaNova", Lucida Sans, Trebuchet, sans-serif; | |
$base-ratio: 1.618; | |
$line-height-ratio: 1.4; | |
$fs-root: 15px; | |
$fs-xsmall: modular-scale(1rem, -2, $base-ratio); | |
$fs-small: modular-scale(1rem, -1, $base-ratio); | |
$fs-medium: modular-scale(1rem, 0, $base-ratio); | |
$fs-large: modular-scale(1rem, 1, $base-ratio); | |
$fs-xlarge: modular-scale(1rem, 2, $base-ratio); | |
$gap-xlarge: modular-scale(1em, 2, $base-ratio); | |
$gap-large: modular-scale(1em, 1, $base-ratio); | |
$gap-medium: modular-scale(1em, 0, $base-ratio); | |
$gap-small: modular-scale(1em, -1, $base-ratio); | |
$gap-xsmall: modular-scale(1em, -2, $base-ratio); | |
$iphone-landscape: 480px; | |
$ipad-portrait: 768px; | |
$ipad-landscape: 1024px; | |
$bp-small: new-breakpoint(max-width $iphone-landscape 6); | |
$bp-medium: new-breakpoint(max-width $ipad-portrait 12); | |
$bp-large: new-breakpoint(min-width $ipad-portrait 12); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment