add some additional styling to the docs

This commit is contained in:
₍˄ุ.͡˳̫.˄ุ₎ 2013-10-16 00:47:46 -07:00
parent 27380305f5
commit 8027b702c2
2 changed files with 66 additions and 3 deletions

View File

@ -2,6 +2,36 @@
* by Team Sass Design (@teamsassdesign)
*/
.maruku_toc {
display: none;
}
@import url(http://fonts.googleapis.com/css?family=Source+Sans+Pro);
@import "compass";
@import "breakpoint";
@import "dependencies/layout";
@import "dependencies/typography";
@import "dependencies/color";
@import "foundation/site";
html {
text-align: left;
background: $color-background;
}
body {
padding: 2em;
font: {
size: inherit;
family: 'Source Sans Pro', sans-serif;
}
}
.maruku_toc { display: none; }

View File

@ -0,0 +1,33 @@
.maruku_toc { display: none; }
body {
padding: 0;
font-family: inherit;
font-size: inherit;
}
#header {
@extend .banner;
&:before {
@extend .pop-stripe;
position: relative;
top: -1.5em;
display: block;
content: "";
}
}
#menu {
@include container(hide);
position: static;
font-size: inherit;
color: inherit;
<% data.layout.resolutions.each do |resolution| %>
@include breakpoint($<%= resolution.target %>) {
@include set-grid($<%= resolution.target %>-grid);
@include container(hide);
}
<% end %>
}