59 lines
905 B
SCSS
59 lines
905 B
SCSS
|
|
html {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
*, *:before, *:after {
|
|
box-sizing: inherit;
|
|
}
|
|
|
|
button,
|
|
input[type="reset"],
|
|
input[type="button"],
|
|
input[type="submit"] {
|
|
&::-moz-focus-inner {
|
|
padding: 0;
|
|
margin: 0;
|
|
border: 0;
|
|
}
|
|
}
|
|
|
|
input, button, select {
|
|
margin: 0;
|
|
padding: 0;
|
|
border: 0;
|
|
}
|
|
|
|
body {
|
|
background: color-navy;
|
|
font-size: font-size;
|
|
font-family: font-sans;
|
|
color: color-default;
|
|
text-rendering: optimizeLegibility;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
overflow-x: hidden;
|
|
height: 100%;
|
|
}
|
|
|
|
.wrapper {
|
|
@include clearfix();
|
|
@media screen and (max-width: 1240px) {
|
|
margin: 0 auto;
|
|
padding: 0 20px;
|
|
}
|
|
}
|
|
|
|
.inner {
|
|
@include clearfix();
|
|
@media screen {
|
|
padding: 0 gutter-width;
|
|
}
|
|
}
|
|
|
|
#content-wrap {
|
|
background: color-background-light;
|
|
border-bottom: 1px solid darken(color-navy, 5%);
|
|
margin: -1px 0;
|
|
}
|