mirror of
https://github.com/danog/sass-site.git
synced 2024-12-14 18:37:35 +01:00
34 lines
567 B
Plaintext
34 lines
567 B
Plaintext
|
.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 %>
|
||
|
}
|