Blame view

frontend/web/css/_doc.scss 5.01 KB
24efc08d   Виталий   doctors page
1
2
3
4
5
6
  .doc-btn {
    margin-top: 29px;
    .btn_ {
      background: #fff !important;
      color:#333;
      padding: 0 22px;
77c8a192   Виталий   doctor page 5 + 404
7
      box-shadow: none;
24efc08d   Виталий   doctors page
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
    }
  }
  
  .doc-name {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
  }
  
  .doc-surname {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 6px;
  }
  
  .specialty {
    font-size: 11px;
    text-transform: uppercase;
    color: $link-color;
    margin-top: 12px;
    a {
      text-decoration: none;
    }
  }
  
  .doc-txt {
    margin-top: 15px;
    font-size: 14px;
  }
  
  .doctor-img {
    width: 165px;
    height: 165px;
    display: table-cell;
    vertical-align: bottom;
    overflow: hidden;
    background: grey;
    text-align: center;
    border-radius: 100%;
    @include Gradient-horisontal(#f5f5f5, #e6e6e6);
    img {
      vertical-align: bottom;
      max-width: 100%;
      max-height: 100%;
    }
  }
  
  .doctors-col {
    margin-top: 60px;
    &:nth-child(2n +3) {
      clear: both;
    }
  }
  
  .slider-doctors-wrapper {
    margin-bottom: 15px;
  }
  
  @media (max-width: 991px) {
    .doctor-img {
      width: 95px;
      height: 95px;
    }
  }
  @media (max-width: 767px) {
    .doctor-img {
      width: 165px;
      height: 165px;
    }
    .doctors-col {
      text-align: center;
      &:nth-child(2n +3) {
        clear: none;
      }
      .doctor-img-wr {
        display: inline-block;
        width: 165px !important;
        float: none;
        margin-bottom: 16px;
        padding: 0 !important;
      }
    }
  
    .doc-btn {
      text-align: center;
      .btn_ {
        display: inline-block;
        float: none;
      }
    }
  }
  
  /***slider doc***/
60536c90   Виталий   doctor page 2
102
103
104
  .slider-doctors {
    //padding: 0 20%;
  }
24efc08d   Виталий   doctors page
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
  .slider-doc-items {
    float: left;
    //margin-left: -23px;
  }
  
  
  .slider-doctors-wrapper {
    position: relative;
    padding-bottom: 20px;
    margin-top: 27px;
    .owl-nav {
      display: none;
    }
  }
  .slider-doc-main {
    width: 40%;
    height: 100%;
    left: 50%;
    margin-left: -20%;
    position: absolute;
60536c90   Виталий   doctor page 2
125
126
    @include Gradient-horisontal(#f3f3f3,#e6e6e6);
  
24efc08d   Виталий   doctors page
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
  }
  
  .slider-doc-main-item-img {
    float: left;
    display: table;
    height: 100%;
    div {
      vertical-align: bottom;
      display: table-cell;
      img {
        vertical-align: bottom;
      }
    }
  }
  
  .slider-doc-main-item-txt {
    float: left;
    display: inline-block;
    max-width: 368px;
    margin-top: 114px;
  
    .doc-name, .doc-surname, .specialty, .doc-txt, .doc-btn  {
      float: left;
      clear: both;
    }
  }
  
  .slider-doc-main-items {
60536c90   Виталий   doctor page 2
155
    display: none;
24efc08d   Виталий   doctors page
156
    height: 100%;
60536c90   Виталий   doctor page 2
157
158
159
160
  
    &.active {
      display: table !important;
    }
24efc08d   Виталий   doctors page
161
162
163
164
165
166
167
168
  }
  
  .btns-doc {
    position: absolute;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 18px;
3f7dcad1   Виталий   doctor page 4
169
    z-index: 4;
24efc08d   Виталий   doctors page
170
    div {
3f7dcad1   Виталий   doctor page 4
171
172
      position: relative;
      z-index: 3;
24efc08d   Виталий   doctors page
173
174
175
176
177
178
179
180
181
182
183
184
185
      cursor: pointer;
      width: 10px;
      height: 18px;
      float: left;
      background: url("../images/slider-left.svg");
      background-position: 50% 50%;
      background-repeat: no-repeat;
      background-size: 10px 18px;
      &.right {
        float: right;
        background: url("../images/slider-right.svg");
      }
    }
3f7dcad1   Виталий   doctor page 4
186
187
    &:before {
      content: '';
3f7dcad1   Виталий   doctor page 4
188
189
190
191
192
193
194
195
196
      z-index: 2;
      width: 100%;
      height: 100%;
      position: absolute;
      top: -10px;
      left: -10px;
      box-sizing: content-box;
      padding: 10px;
    }
60536c90   Виталий   doctor page 2
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
  }
  
  @media (max-width: 1790px) {
    .slider-doc-main {
      width: 50%;
      margin-left: -25%;
    }
  }
  
  @media (max-width: 1470px) {
    .slider-doc-main-item-txt {
      max-width: 320px;
      margin-top: 80px;
    }
  }
  
  @media (max-width: 1340px) {
    .slider-doc-main-item-txt {
      max-width: 260px;
      margin-top: 50px;
    }
    .slider-doc-main {
      width: 52%;
      margin-left: -26%;
    }
  }
  
  @media (max-width: 1200px) {
    .slider-doc-main-item-img div img {
      max-width: 300px;
    }
    .slider-doc-main {
      width: 60%;
      margin-left: -30%;
    }
  }
  
  @media (max-width: 991px) {
    .slider-doc-main {
      width: 66%;
      margin-left: -33%;
    }
  }
  
  @media (max-width: 870px) {
    .slider-doc-main {
      width: 70%;
      margin-left: -35%;
    }
  }
  
  @media (max-width: 845px) {
    .slider-doc-main-item-img div img {
      max-width: 280px;
    }
    .slider-doc-main-item-txt {
      max-width: 230px;
      margin-top: 30px;
    }
  }
  
  @media (max-width: 767px) {
    .slider-doc-main {
      width: 100%;
      margin-left: 0;
      left: 0;
    }
    .slider-doctors-wrapper {
      padding-bottom: 0;
    }
    .slider-doc-main-item-txt {
      max-width: 375px;
      margin-top: 80px;
    }
  }
  
  @media (max-width: 680px) {
    .slider-doc-main-item-txt {
      max-width: 305px;
      margin-top: 70px;
    }
  }
  
  @media (max-width: 615px) {
    .slider-doc-main-item-img div img {
      max-width: 240px;
    }
    .slider-doc-main-item-txt {
      max-width: 270px;
      margin-top: 55px;
    }
  }
  
  @media (max-width: 540px) {
    .slider-doc-main-item-txt {
      .doc-txt {
        display: none;
      }
    }
    .slider-doctors {
      max-height: 380px;
      overflow: hidden;
    }
  }
  
  @media (max-width: 470px) {
    .slider-doc-main-item-img div img {
      max-width: 200px;
    }
    .slider-doctors {
      max-height: 320px;
    }
  }
  
  @media (max-width: 435px) {
    .slider-doc-main-item-img div img {
      max-width: 170px;
    }
    .slider-doctors {
      max-height: 270px;
    }
    .slider-doc-main-item-txt {
      margin-top: 30px;
    }
  }
  
  @media (max-width: 405px) {
    .slider-doctors-wrapper {
      display: none;
    }
24efc08d   Виталий   doctors page
327
  }