1// Bits and pieces from Minima Jekyll Layout
2// The MIT License (MIT) Copyright (c) 2016 Parker Moor
3
4// Site header
5.site-header {
6  border-top: 5px solid $grey-color-dark;
7  border-bottom: 1px solid $grey-color-light;
8  min-height: 56px;
9
10  // Positioning context for the mobile navigation icon
11  position: relative;
12}
13
14.site-title {
15  font-size: 26px;
16  font-weight: 300;
17  line-height: 56px;
18  letter-spacing: -1px;
19  margin-bottom: 0;
20  float: left;
21
22  &,
23  &:visited {
24    color: $grey-color-dark;
25  }
26}
27// Site footer
28.site-footer {
29  border-top: 1px solid $grey-color-light;
30  padding: $spacing-unit 0;
31}
32
33// Page content
34.page-content {
35  padding: $spacing-unit 0;
36}
37
38