Blame view

public/scss/pages/about/about-banner.scss 1.06 KB
b80175387   Андрей Ларионов   Начальный проект ...
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
  @import "../../vars";
  @import "../../mixins";
  
  .about-page-banner {
      margin-top: 135px;
      width: 100%;
      height: 316px;
      position: relative;
  }
  
  .about-page-banner-bg {
      position: absolute;
      content: "";
      background-image: url("../img/about/centre-bg-min.png");
      background-repeat: no-repeat;
      background-size: cover;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
  }
  
  .about-page-banner-content {
      position: relative;
      z-index: 1;
      display: flex;
      justify-content: space-between;
      padding-top: 90px;
  }
  
  .abote-banner-block {
      max-height: 110px;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
  
  
      &__title {
          font-weight: 600;
          font-size: 78px;
          line-height: 100%;
          color: $vactiveOrange;
  
          > span {
              font-size: 36px;
          }
      }
  
      &__par {
          font-weight: 500;
          font-size: 20px;
          line-height: 24px;
          color: #BEC4CE;
      }
  }
  
  .abote-banner-block-check {
      margin-top: 16px;
  }