Blame view

public/scss/pages/main/about.scss 2.25 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
  @import "../../vars";
  
  .about {
    padding-top: 70px;
  }
  
      .about-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
  
        &__title {
          font-weight: 700;
          font-size: 48px;
          line-height: 100%;
          letter-spacing: -0.01em;
          color: $vmainGrey;
        }
  
        &__link {
          font-family: 'Muller';
          font-style: normal;
          font-weight: 500;
          font-size: 15px;
          line-height: 22px;
          color: $vactiveOrange;
          position: relative;
          margin-right: 38px;
  
          &:after {
            position: absolute;
            content: "";
            background-image: url("../../../img/main/link.svg");
            background-repeat: no-repeat;
            background-size: cover;
            width: 24px;
            height: 13px;
            margin-left: 14px;
            margin-top: 5px;
          }
        }
      }
  
      .about-main {
        margin-top: 40px;
        display: flex;
      }
  
      .about-main-text {
          letter-spacing: -0.01em;
          font-size: 16px;
          color: $vmainGrey;
          max-width: 658px;
          width: 100%;
  
          &__title {
            font-weight: 600;
            font-size: 16px;
            line-height: 20px;
            max-width: 580px;
            width: 100%;
          }
  
          &__par {
            line-height: 22px;
            margin-top: 24px;
            max-width: 1063px;
            width: 100%;
          }
      }
  
      .about-main-numbers {
          display: flex;
          flex-wrap: wrap;
          margin-left: 117px;
          padding-top: 20px;
  
          &:not(:nth-child(2n)) {
              margin-right: 133px;
            }
  
          > :nth-child(-n + 2) {
              margin-bottom: 97px;
          }
      }
  
      .about-main-numbers-block {
  
            &__num {
              font-family: 'Muller';
              font-weight: 700;
              font-size: 48.75px;
              line-height: 22px;
              color: $vactiveOrange;
            }
  
            &__def {
              max-width: 192px;
              width: 100%;
              margin-top: 24px;
              font-family: 'Muller';
              font-weight: 500;
              font-size: 15px;
              line-height: 19px;
              color: $vmainGrey;
            }
          }
  
          .second, .four {
            margin-left: 52px;
          }