Blame view

frontend/web/css/_price.scss 3.08 KB
6dd77cde   Виталий   qwsedrftg
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
115
116
117
118
119
120
121
122
123
124
125
126
  .service-title-wr {
    display: table;
    width: 100%;
    background: $gray-color;
  }
  
  .service-title {
    padding-left: 19px;
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: 47px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: default;
    padding-right: 5px;
  }
  
  .service-tb-wrapp {
    border-top: 0;
    border-right: 1px solid $border-gray;
    border-bottom: 1px solid $border-gray;
    border-left: 1px solid $border-gray;
    table {
      width: 100%;
      tr {
        th, td {
          padding-left: 19px;
          height: 40px;
          vertical-align: middle;
          text-align: left;
          border-bottom: 1px solid $border-gray;
  
        }
        th {
          font-weight: 700;
  
        }
        td {
          &:last-child {
            font-weight: 700;
            width: 107 + 15 +px;
            padding-right: 5px;
          }
  
        }
        &:last-child {
          td {
            border-bottom: 0;
          }
        }
        &:hover {
          td {
            background:  $border-gray;
          }
        }
      }
    }
  }
  
  .acordion-bl-wr {
    border-top: 1px solid $border-gray;
  }
  
  
  .acordion-wr {
    position: relative;
    height: 48px;
    overflow: hidden;
    display: block !important;
    &.active {
      .acordion-ico {
        &:after {
          transform: rotate(90deg);
        }
      }
    }
  
    .service-title {
      padding-left: 49px;
      cursor: pointer;
    }
    .acordion-ico {
      display: block;
    }
  }
  
  .acordion-ico {
    display: none;
    @include gradientBtn;
    width: 18px;
    height: 18px;
    border-radius: 100%;
    position: absolute;
    top: 13px;
    left: 19px;
    cursor: pointer;
    &:before, &:after {
      background: #fff;
      position: absolute;
      left: 50%;
      top: 50%;
      content: '';
      display: block;
    }
    &:before {
      width: 10px;
      height: 2px;
      margin-top: -1px;
      margin-left: -5px;
  
    }
    &:after {
      width: 2px;
      height: 10px;
      margin-top: -5px;
      margin-left: -1px;
      transition: 0.5s;
    }
  }
  
  .price-bl-wrapp {
    margin-top: 32px;
  }
  
0aacb63e   Виталий   price page
127
128
129
130
131
  .new-price-write-txt-btn {
    position: relative;
    padding-right: 221px;
    margin-top: 30px;
    margin-bottom: 52px;
b2575c93   Виталий   price page
132
    min-height: 44px;
0aacb63e   Виталий   price page
133
134
135
136
137
138
  }
  
  .new-price-write-btn {
    position: absolute;
    right: 0;
    top: 0;
b2575c93   Виталий   price page
139
140
    .btn_ {
      margin: 0 !important;
0aacb63e   Виталий   price page
141
142
    }
  }
059fb942   Виталий   price page
143
144
145
146
147
148
149
  .new-price-write-txt {
    span {
      display: table-cell;
      vertical-align: middle;
      height: 44px;
    }
  }
0aacb63e   Виталий   price page
150
  
6dd77cde   Виталий   qwsedrftg
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
  @media (max-width: 991px) {
    .service-tb-wrapp {
      table {
        tr {
          &:hover {
            td {
              background: none;
            }
          }
        }
      }
    }
  }
  @media (max-width: 767px) {
    .service-title {
      font-size: 12px;
      line-height: 14px;
    }
    .acordion-ico {
      left: 9px;
    }
    .acordion-wr .service-title {
      padding-left: 33px;
    }
    .service-tb-wrapp {
      table {
        tr {
          td {
            @include wfl;
            display: block;
            vertical-align: top;
            height: auto;
            &:first-child {
              padding-top: 12px;
              border-bottom: 0;
            }
            &:last-child {
              width: 100%;
              margin-top: -1px;
              padding-bottom: 11px;
            }
          }
  
        }
      }
    }
  }