mirror of https://github.com/lxndrblz/anatole.git

Alexander Bilz
26.18.2022 3c8000914fd01a13427120de5c9a646ddc4f20d3
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
.wrapper {
  display: flex;
  flex-direction: column;
 
  @include desktop {
    flex-direction: row;
  }
 
  @include widescreen {
    justify-content: center;
  }
 
  &__main {
    width: 100%;
 
    @include desktop_and_print {
      width: $content-width;
    }
 
    @include widescreen {
      width: calc(#{$content-ratio} * 80%);
    }
 
    &--fullscreen {
      margin-top: 20px;
 
      @include desktop_and_print {
        width: 100%;
        margin-top: 0px;
      }
 
      @include widescreen {
        width: $body-max-width;
      }
    }
  }
 
  &__sidebar {
    width: 100%;
    padding: 16px 0;
 
    @include desktop_and_print {
      width: $sidebar-width;
      padding: 0;
    }
 
    @include widescreen {
      width: calc(#{$sidebar-ratio} * 80%);
    }
 
    &--hidden {
      display: none;
    }
  }
}