Blame view

public/scss/pages/catalog/catalog-info.scss 1.07 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
  @import "../../vars";
  @import "../../mixins";
  
  .catalog-info {
      padding-top: 75px;
  
      &__title {
          font-weight: 600;
          font-size: 36px;
          line-height: 42px;
          color: $vmainGrey;
      }
  }
  
  .catalog-info-wrapper {
      margin-top: 42px;
      display: flex;
  }
  
  .catalog-info-col {
      width: 49%;
  
      &__text-main {
          font-weight: 600;
          font-size: 16px;
          line-height: 22px;
          margin-bottom: 48px;
      }
  
      &__title {
          font-weight: 600;
          font-size: 16px;
          line-height: 22px;
          margin-bottom: 12px;
      }
  
      &__list {
          padding-left: 12px;
  
          > :not(:last-child) {
              margin-bottom: 12px;
          }
  
          > li {
              list-style-type: disc;
          }
      }
  }
  
  .catalog-info-col-1 {
      margin-right: 24px;
  }
  
  .catalog-info-bottom {
      display: flex;
      align-items: flex-start;
      margin-top: 48px;
  
      > :not(:last-child) {
          margin-right: 34px;
      }
  
      &__text {
          width: 49%;
          font-weight: 600;
              font-size: 16px;
              line-height: 22px;
      }
  }