Blame view

public/scss/blocks/_policy.scss 1.47 KB
242debab8   thesolarwind   Первый коммит в п...
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
  .policy-top {
      background-color: #286699;
      padding-bottom: 60px;
  }
  
  .policy-cnt {
      padding: 60px 0;
  
      @media (min-width: 1200px) {
          padding: 100px 0;
      }
  }
  
  
  .policy {
  
      &__title {
          max-width: 780px;
          word-wrap: break-word;
      }
  
      &__inner {
          max-width: 1030px;
  
          ol {
              counter-reset: my-counter;
  
              li {
                  margin: 0;
  
                  &:not(:last-child) {
                      margin-bottom: 60px;
                  }
              }
          }
  
          h2 {
              position: relative;
              padding-left: 42px;
              margin: 0px 0px 24px 0px;
              font-size: 32px;
              line-height: 36px;
              font-weight: 800;
  
              @media (min-width: 1200px) {
                  padding-left: 48px;
                  font-size: 36px;
                  line-height: 44px;
              }
  
              &::before {
                  content: counter(my-counter)'.';
                  counter-increment: my-counter;
                  position: absolute;
                  top: 0;
                  left: 0;
              }
  
          }
  
          p {
              margin: 0;
              color: #4B4E53;
              font-size: 14px;
              line-height: 20px;
              font-weight: 500;
  
              @media (min-width: 1200px) {
                  font-size: 16px;
                  line-height: 24px;
              }
  
              &:not(:last-child) {
                  margin-bottom: 20px;
              }
          }
      }
  }