Blame view

frontend/web/css/_support.scss 1.89 KB
8f340aa7   Anastasia   - main page
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
  .section-books-support {
    margin-top: 33px;
    padding-bottom: 6px;
  }
  .title-support {
    text-align: center;
  }
  
  .support-form-col {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  
  .support-form-wr {
  
    background: #f6f6f6;
    border-radius: 2px;
    box-shadow: 0px 0px 12px 0px rgba(172, 171, 171, 0.6);
    padding: 29px 30px 30px 30px;
    margin-top: 34px;
    form {
      @include wfl;
    }
  }
  
  .title-support-form {
    font-weight: 700;
    font-size: 18px;
  }
  
  .autor-support-form {
    font-weight: 500;
    font-size: 15px;
    margin-top: 8px;
    margin-bottom: 15px;
  
  
  }
  
  .price-input {
    width: 158px;
   margin: 0 auto;
    input {
      height: 53px;
      text-align: center;
      font-weight: 700;
      font-size: 24px;
      padding: 0;
    }
6a07bb2b   Виталий   support form
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
  }
  
  .search-support {
  
    position: relative;
    &:before {
      position: absolute;
      bottom: 10px;
      right: 10px;
      width: 18px;
      height: 18px;
      background: url("../images/search-svg.svg") 50% 50% no-repeat;
      background-size: 18px 18px;
      content: '';
  
    }
    input {
      padding-right: 10px + 18px + 5px;
    }
  }
  
  .select-support {
    position: relative;
    &:before {
      position: absolute;
      bottom: 16px;
      right: 12px;
      width: 12px;
      height: 6px;
      background: url("../images/arrow_dw_01.svg") 50% 50% no-repeat;
      background-size: 12px 6px;
      content: '';
    }
    select {
      padding-right: 12px + 12px + 5px;
    }
  }
  .input-else {
    text-align: center;
    font-size: 13px;
    color: #5d5d5d;
    font-style: italic;
    margin-top: 18px;
a6fa5a3b   Виталий   support form
93
    @include wfl;
6a07bb2b   Виталий   support form
94
95
96
97
  }
  .support-link {
    margin-top: 16px;
    text-align: center;
a6fa5a3b   Виталий   support form
98
    @include wfl;
6a07bb2b   Виталий   support form
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
    a {
      text-transform: uppercase;
      text-decoration: none !important;
      font-weight: 700;
      font-size: 13px;
      color: #888888;
      span {
          border-bottom: 1px solid #02a8d1;
      }
      &:hover {
        span {
          border-bottom: 1px solid transparent;
        }
      }
    }
  }
  .support-shecks {
    margin-top: 13px !important;
8f340aa7   Anastasia   - main page
117
  }