Blame view

public/scss/pages/about/about-history.scss 1.7 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
  @import "../../vars";
  @import "../../mixins";
  
  .about-history {
      padding-top: 147px;
  
      &__title {
          font-weight: 700;
          font-size: 48px;
          line-height: 100%;
          color: $vactiveOrange;
          max-width: 427px;
          width: 100%;
          margin-right: 20px;
  
          > span {
              display: block;
              font-weight: 500;
              font-size: 20px;
              line-height: 24px;
              color: #ABB2BF;
              margin-top: 16px;
          }
      }
  }
  
  .about-history-container {
      position: relative;
      display: flex;
  }
  
  .swiper-about-history {
      width: 880px;
      height: 160px;
  }
  
  .swiper-wrapper-about {
      width: 880px;
      height: 160px;
  }
  
  .swiper-slide-about-history {
     height: 100%;
     width: 100%;
     position: relative;
  }
  
  .slide-about-history-year {
      font-weight: 600;
      font-size: 24px;
      line-height: 28px;
      color: $vactiveOrange;
      display: inline-block;
      position: absolute;
      top: 50%;
      left: 0;
  }
  
  .slide-about-history-text {
      display: inline-block;
      max-width: 650px;
      margin-left: 200px;
      width: 100%;
      font-size: 16px;
      line-height: 22px;
      color: $vmainGrey;
      position: absolute;
      top: 35%;
      left: 0;
  }
  
  .swiper-button-next__about-history,
  .swiper-button-prev__about-history {
      position: absolute;
  }
  
  .swiper-button-prev__about-history {
      top: calc(68% + 54px) !important;
      left: 475px !important;
      width: 19px !important;
      height: 15px !important;
  }
  
  .swiper-button-next__about-history {
      top: calc(49% - 54px) !important;
      left: 475px !important;
      width: 19px !important;
      height: 15px !important;
  }
  
  .about-history-container [class^="swiper-button-"]::after {
      content: "";
  }