net/_sass/_base.scss

39 lines
593 B
SCSS
Raw Normal View History

2013-11-08 12:47:13 -05:00
@import "susy";
@font-face {
font-family: Typewriter;
src: url(Typewriter.otf) format("opentype");
}
$serif: 'PT Serif', 'Georgia', serif;
$typewriter: Typewriter,"Georgia","Times",serif;
$total-columns : 6;
$column-width : 3em;
$gutter-width : 1em;
$grid-padding : $gutter-width;
$container-style: magic;
$show-grid-backgrounds : true;
$break: 12;
.container {
@include container($total-columns, $break);
}
body {
color: #343434;
background: #ffffff;
font-family: $serif;
font-size: 16px;
padding-top: 3em;
}
a {
text-decoration: none;
}