Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_layouts.scss « layouts « stylesheets « src - github.com/MunifTanjim/minimo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e970bed089d4e110a67c20ab78d79e902d0a3cd4 (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
.site {
  overflow-x: hidden;
  background: $color__pure-white;
}

.main {
  width: 100%;
  padding-top: 2em;

  transition: margin-left $transition-duration;

  .sidebar.toggled ~ & {
    margin-left: $sidebar__width;
  }

  @include screen($breakpoint-medium) {
    width: auto; // TODO: remove redundant rule
    width: calc(100% - #{$sidebar__width});

    .has-sidebar & {
      float: left;
      margin-left: $sidebar__width;
      padding-left: 2em;
    }
  }
}

.container {
  width: 100%;
  max-width: $container__max-width;

  padding: 0 $container__gutter;
  margin: 0 auto;

  .has-sidebar & {
    margin-left: 0;
  }
}

.sep {
  &-after:after,
  &-before:before {
    content: '';
    display: block;
    width: 4em;
    margin-top: 2.5em;
    margin-bottom: 2.5em;
    border-bottom: 0.125em solid $color__grey;
  }
}

@import 'sidebar/sidebar';

@import 'header';

@import 'entry/entry';

@import 'lists';

@import 'footer';

@import 'others/others';

@import 'widgets/widgets';