34 lines
469 B
SCSS
34 lines
469 B
SCSS
@import "colors";
|
|
@import "constants";
|
|
@import "mixins";
|
|
@import "placeholders";
|
|
@import "typography";
|
|
|
|
body,
|
|
input,
|
|
textarea,
|
|
select {
|
|
@extend %new-type;
|
|
font-size: 16px;
|
|
line-height: 1.42857143;
|
|
}
|
|
|
|
.page-wrapper {
|
|
position: relative;
|
|
min-height: 100%;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 36px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
a {
|
|
color: $blue;
|
|
}
|
|
|
|
.container {
|
|
@include horizontal-padding($default-padding);
|
|
max-width: $page-width + 2 * $default-padding;
|
|
margin: 0 auto;
|
|
}
|