64 lines
1.2 KiB
SCSS
64 lines
1.2 KiB
SCSS
html {
|
|
text-align: center;
|
|
margin: 0 $gw-gutter;
|
|
|
|
body {
|
|
color: $dark-gray;
|
|
font: $body-font-size $body-font-family;
|
|
margin: $body-line-height auto;
|
|
max-width: $max-width;
|
|
text-align: left;
|
|
width: grid-width(12);
|
|
|
|
header {
|
|
@extend .clearfix;
|
|
border-bottom: 1px solid $border-color;
|
|
margin-bottom: $body-line-height;
|
|
|
|
h1 {
|
|
border-right: 1px solid $border-color;
|
|
font-size: $body-font-size;
|
|
font-weight: bold;
|
|
margin: 0 $gw-gutter 0 0;
|
|
padding: $body-line-height $gw-gutter $body-line-height 0;
|
|
display: block;
|
|
float: left;
|
|
}
|
|
|
|
nav {
|
|
float: left;
|
|
display: block;
|
|
margin: 0;
|
|
|
|
ul {
|
|
@extend .clearfix;
|
|
display: inline-block;
|
|
padding: $body-line-height 0;
|
|
margin: 0;
|
|
|
|
li {
|
|
margin-right: $body-line-height;
|
|
display: inline-block;
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
section {
|
|
@extend .clearfix;
|
|
}
|
|
|
|
img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
footer {
|
|
padding: $body-line-height 0;
|
|
border-top: 1px solid $border-color;
|
|
margin-top: $body-line-height;
|
|
}
|
|
}
|
|
}
|