aboutsummaryrefslogtreecommitdiff
path: root/_scss/components/_core.scss
blob: 7a08e9c343da815fa9ff05fd23f4e0e21ce5a7b8 (plain) (blame)
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
@import 'utilities/textsizeadjust';

*,
*::after,
*::before {
  @include text-size-adjust(100%);
  box-sizing: border-box;
}

html {
  height: 100%;
  overflow-y: scroll;
}

body {
  display: flex;
  flex-direction: row;
  min-height: 100%;
}

.container {
  flex: 75%;
  padding-right: 16px;
}

.sidebar {
  border-left: 1px solid $color-bg-alt;
  flex: 25%;
  height: 100%;
  padding-left: 16px;
}

@media (max-width: 684px) {
  body {
    flex-direction: column;
  }

  .container {
    flex: 100%;
    padding-right: 0;
  }

  .sidebar {
    border: 0;
    flex: 100%;
    padding-left: 0;
  }
}