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

_footer.scss « layout « sass « assets - github.com/zzossig/hugo-theme-zdoc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d1a5d040a9bc84c5b11af86107a3769065ff2691 (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
.bot {
  @include themify($themes) {
    background-color: themed('navbar-background-color');
  }
}
.footer {
  @include themify($themes) {
    border-top: 1px solid themed('border-line-color');
  }

  padding: 1rem;
  text-align: center;

  &__section {
    @include flexbox();
    @include flex-direction(column);
    @include flex-grow(1);
    @include align-items(flex-start);

    &--wrapper {
      @include flexbox();
      @media only screen and (max-width: 600px) {
        @include flex-direction(column);
      }
    }

    &--title {
      font-family: $title-font;
      font-size: 1rem;
      font-weight: bold;
      margin: 1rem 0 0.5rem 0;
    }

    &--link {
      display: block;
      text-align: left;
      padding: 0.15rem 0.35rem;
    }
  }

  &__contents {
    width: 100%;
    margin: 2rem 0;

    @include flexbox();
    @include align-items(flex-start);
    @include flex-direction(column);
  }
}