net/_sass/_base.scss

27 lines
429 B
SCSS
Raw Normal View History

2014-10-06 22:27:20 -04:00
@import "bourbon";
2013-11-08 12:47:13 -05:00
@font-face {
font-family: Typewriter;
src: url(Typewriter.otf) format("opentype");
}
$serif: 'PT Serif', 'Georgia', serif;
$typewriter: Typewriter,"Georgia","Times",serif;
2015-02-11 23:35:29 -05:00
$base-font-color: #343434;
$base-border-radius: 3px;
2014-10-06 22:27:20 -04:00
// Layout
$max-width: em(624) !default;
$grid-columns: 8;
$column: 4em;
$gutter: 1em;
2013-11-08 12:47:13 -05:00
2014-10-06 22:27:20 -04:00
//$visual-grid: true;
2013-11-08 12:47:13 -05:00
2014-10-06 22:27:20 -04:00
@import "neat";
2013-11-08 12:47:13 -05:00
2014-10-06 22:27:20 -04:00
$mobile: new-breakpoint(max-width 500px 4);