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

_home.scss « pages « sass « assets - github.com/zzossig/hugo-theme-zdoc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a1f7f49efc78b7b31a50f48133be266df8e6a824 (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
.home {
  &__landing {
    width: 100%;
    min-height: 500px;
    
    @include flexbox();
    @include align-items(center);
    @include justify-content(center);

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

    &--img {
      margin: 0.5rem;
    }

    &--txt {
      margin: 2.5rem 0.5rem;
      .title {
        font-size: 56px;
        font-weight: 900;
        font-family: $title-font;
      }

      .text {
        font-size: 22px;
      }

      @media only screen and (max-width: 600px) {
        text-align: center;
      }
    }

    &--link {
      text-decoration: none !important;
    }

    &--btn {
      margin-top: 2.5rem;
      margin-right: 0.5rem;
    }

    &--btn2 {
      margin: 0.5rem;
    }
  }

  &__social {
    width: 100%;
    padding: 1rem 0;

    @include flexbox();
    @include justify-content(center);

    &--item {
      margin: 0 0.25rem;
    }
  }

  &__banner {
    width: 100%;
    padding: 0.75rem;

    @include flexbox();
    @include justify-content(center);

    &--wrapper {
      @include themify($themes) {
        background-color: themed('banner-background-color');
      }
    }
  }
}