Blame view

frontend/web/css/_support.scss 2.96 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
  }
  
  .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 {
51532a3f   Виталий   support form
74
75
76
77
78
79
80
81
      //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: '';
6a07bb2b   Виталий   support form
82
83
84
85
86
87
88
89
90
91
92
    }
    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;
51532a3f   Виталий   support form
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
  }
  
  .select2 {
    float: left;
    margin-top: 8px;
    .select2-selection__arrow {
  
    }
  }
  
  .select2-container--krajee .select2-selection--single {
    height: 38px;
    border: 1px solid #cccccc;
    border-radius: 0;
    line-height: 25px;
  }
  
  .select2-container--krajee .select2-selection--single .select2-selection__arrow {
    border: 0;
    height: 38px;
    width: 34px;
    border-left: 0;
    top: 0;
    b {
      display: none;
    }
    &:before {
      position: absolute;
      top: 50%;
      margin-top: -3px;
      left: 50%;
      margin-left: -6px;
      width: 12px;
      height: 6px;
      background: url("../images/arrow_dw_01.svg") 50% 50% no-repeat;
      background-size: 12px 6px;
      content: '';
    }
  }
  
  .select2-container--krajee .select2-search--dropdown .select2-search__field {
    border-radius: 0;
    background-position: right 10px top 10px;
    background-repeat: no-repeat;
  
  }
  
  .select2-container--krajee .select2-results > .select2-results__options {
    float: left;
    width: 100%;
  }
  
  .select2-container--krajee .select2-selection--single .select2-selection__clear {
    right: 27px;
    top: 7px;
8f340aa7   Anastasia   - main page
172
  }