2017-07-06 17:52:16 +02:00
|
|
|
@import "colors";
|
2017-07-06 14:15:57 +02:00
|
|
|
@import "constants";
|
|
|
|
@import "mixins";
|
2017-07-03 14:02:57 +02:00
|
|
|
@import "placeholders";
|
2017-05-03 16:50:36 +02:00
|
|
|
@import "typography";
|
|
|
|
|
2017-07-20 10:02:48 +02:00
|
|
|
body,
|
|
|
|
input,
|
2017-07-25 14:33:03 +02:00
|
|
|
textarea,
|
|
|
|
select {
|
2017-05-03 16:50:36 +02:00
|
|
|
@extend %new-type;
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 1.42857143;
|
|
|
|
}
|
2017-06-13 17:46:08 +02:00
|
|
|
|
2017-07-17 14:52:09 +02:00
|
|
|
.page-wrapper {
|
|
|
|
position: relative;
|
2017-07-31 14:00:28 +02:00
|
|
|
min-height: 100%;
|
2017-07-17 14:52:09 +02:00
|
|
|
}
|
|
|
|
|
2017-06-13 17:46:08 +02:00
|
|
|
h1 {
|
|
|
|
font-size: 36px;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2017-07-03 14:02:57 +02:00
|
|
|
|
2018-06-19 16:23:43 +02:00
|
|
|
strong {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2017-07-06 17:52:16 +02:00
|
|
|
a {
|
|
|
|
color: $blue;
|
|
|
|
}
|
|
|
|
|
2017-07-03 14:02:57 +02:00
|
|
|
.container {
|
2017-07-06 14:15:57 +02:00
|
|
|
@include horizontal-padding($default-padding);
|
|
|
|
max-width: $page-width + 2 * $default-padding;
|
|
|
|
margin: 0 auto;
|
2017-07-03 14:02:57 +02:00
|
|
|
}
|