aboutsummaryrefslogtreecommitdiff
path: root/.themes/classic/sass/base/_layout.scss
blob: b24e1b295225f9378ece0d2989e86a7382261bc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
$max-width: 1200px !default;

// Padding used for layout margins
$pad-min: 18px !default;
$pad-narrow: 25px !default;
$pad-medium: 35px !default;
$pad-wide: 55px !default;

// Sidebar widths used in media queries
$sidebar-width-medium: 240px !default;
$sidebar-pad-medium: 15px !default;
$sidebar-pad-wide: 20px !default;
$sidebar-width-wide: 300px !default;

.group { @include pie-clearfix; }

body {
  -webkit-text-size-adjust: none;
  max-width: $max-width;
  position: relative;
  margin: 0 auto;
  > header, > nav, > footer, #articles > article, #articles > nav {
    @extend .group;
    padding-left: $pad-min;
    padding-right: $pad-min;
    @media only screen and (min-width: 480px) {
      padding-left: $pad-narrow;
      padding-right: $pad-narrow;
    }
    @media only screen and (min-width: 768px) {
      padding-left: $pad-medium;
      padding-right: $pad-medium;
    }
    @media only screen and (min-width: 992px) {
      padding-left: $pad-wide;
      padding-right: $pad-wide;
    }
  }
  > header {
    font-size: 1em;
    padding-top: 1.5em;
    padding-bottom: 1.5em;
  }
}

.toggle-sidebar { display: none; }
#articles { width: 100%;
  + aside {
    float: none;
    padding: 0 $pad-min 1px;
    background-color: $sidebar-bg;
    border-top: 1px solid $sidebar-border;
  }
}

@media only screen and (min-width: 550px) {
  body > header { font-size: 1em; }
}
@media only screen and (min-width: 768px) {
  body { -webkit-text-size-adjust: auto; }
  body > header { font-size: 1.2em; }
  body > nav {
    + div {
      @extend .group;
      padding: 0;
      margin: 0 auto;
      > div {
        @extend .group;
        margin-right: $sidebar-width-medium;
      }
    }
  }
  #articles {
    padding-top: $pad-medium/2;
    padding-bottom: $pad-medium/2;
    float: left;
    + aside {
      width: $sidebar-width-medium - $sidebar-pad-medium*2;
      padding: 0 $sidebar-pad-medium $sidebar-pad-medium;
      background: none;
      float: left;
      margin: 0 -100% 0 0;
    }
  }
  body > div > div { position: relative; }

  .collapse-sidebar {
    > div > div { margin-right: 10px; }
    #articles + aside {
      display: none;
    }
    .toggle-sidebar {
      right: -1px;
      background-color: $sidebar-bg;
      border-right-width: 0;
      text-indent: 2px;
      border-left: 1px solid $sidebar-border;
      @include border-bottom-right-radius(0);
      @include border-bottom-left-radius(.3em);
      @include link-colors(#aaa, #888);
    }
  }

  .toggle-sidebar {
    outline: none;
    position: absolute; right: -21px; top: 0;
    width: 20px;
    font-size: 1.2em;
    line-height: 1.1em;
    padding-bottom: .1em;
    text-indent: -1px;
    text-decoration: none;
    @include link-colors(#ccc, #999);
    @include border-bottom-right-radius(.3em);
    text-align: center;
    background: $main-bg;
    border-bottom: 1px solid $sidebar-border;
    border-right: 1px solid $sidebar-border;
    display: inline-block;
  }
}

@media only screen and (min-width: 992px) {
  body > header { font-size: 1.3em; }
  body > nav + div > div { margin-right: $sidebar-width-wide; }
  #articles {
    padding-top: $pad-wide/2;
    padding-bottom: $pad-wide/2;
    + aside {
      width: $sidebar-width-wide - $sidebar-pad-wide*2;
      padding: 1.2em $sidebar-pad-wide $sidebar-pad-wide;
    }
  }
}