4ca21c3e
Alexey Boroda
first commit
|
1
2
3
4
5
6
7
8
9
10
|
/**/
body, a{
font-family: 'Lato-Medium', Verdana, Arial, sans-serif;
}
body{
display:flex;
flex-direction: column;
min-height: 100vh;
margin: 0;
}
|
fa466799
Eugeny Galkovskiy
123
|
11
12
13
14
|
.nav > li > a:hover, .nav > li > a:focus{
background-color: inherit;
outline: none;
}
|
4ca21c3e
Alexey Boroda
first commit
|
15
16
|
.cont{
flex:1;
|
c5f99cd0
Eugeny Galkovskiy
123
|
17
|
overflow: hidden;
|
4ca21c3e
Alexey Boroda
first commit
|
18
|
}
|
751d4491
Eugeny Galkovskiy
123
|
19
|
.container.cont{
|
766e7ac9
Eugeny Galkovskiy
123
|
20
|
width:100%;
|
751d4491
Eugeny Galkovskiy
123
|
21
22
|
max-width:100%;
}
|
4ca21c3e
Alexey Boroda
first commit
|
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
a{
cursor:pointer;
}
.nav1{
background-color:#e9e6e6;
min-height:31px;
padding:0;
margin:0;
border-radius: 0;
overflow: hidden;
}
.nav1 .navbar-nav{
float: none;
text-align: center;
}
.nav1 li a{
margin: 0;
color: #000000;
font-size: 10.4px;
text-transform: uppercase;
|
4ca21c3e
Alexey Boroda
first commit
|
43
44
45
46
|
padding: 5px;
background-image: url('../images/line1.png');
background-position: center 20px;
background-repeat: no-repeat;
|
fa466799
Eugeny Galkovskiy
123
|
47
48
|
padding-top: 5.5px;
padding-bottom: 4.5px;
|
4ca21c3e
Alexey Boroda
first commit
|
49
50
51
|
}
.nav1 li a:hover, .nav1 li .active{
background-color: inherit!important;
|
fa466799
Eugeny Galkovskiy
123
|
52
|
background-position: center 5px;
|
4ca21c3e
Alexey Boroda
first commit
|
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
}
.nav1 li .active{cursor:default;}
.nav1 .navbar-nav li{
padding: 0 15px;
float: none;
display: inline-block;
}
header{
overflow: hidden;
background-color: #000000;
height: 136px;
background-image: url('../images/logo.png');
background-position: center center;
background-repeat: no-repeat;
position:relative;
}
|
9ffe2c85
Eugeny Galkovskiy
123
|
69
70
71
|
header .container{
position: relative;
height: 100%;
|
b83a7652
Eugeny Galkovskiy
123
|
72
|
max-width: 960px;}
|
4ca21c3e
Alexey Boroda
first commit
|
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
|
header a.main{
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
background-color: black!important;
opacity: 0;
}
header a.main:hover{
background-color: black!important;
opacity: 0.2;
}
/*.container{max-width:960px;}*/
.menu{
background-color:#e9e6e6;
text-transform: uppercase;
font-family: 'Lato-Regular';
margin-bottom: 7px;
}
.menu ul{
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
margin: 0;
padding: 5px 0;
position: relative;
}
|
3809bc04
Alexey Boroda
-Main menu align
|
102
|
.menu li + li {
|
7fd22b52
Eugeny Galkovskiy
123
|
103
|
margin-left: 5.83%;
|
3809bc04
Alexey Boroda
-Main menu align
|
104
105
|
}
.menu li {
|
4ca21c3e
Alexey Boroda
first commit
|
106
107
108
109
|
list-style: none;
margin:0;
padding:0;
text-align: center;
|
3809bc04
Alexey Boroda
-Main menu align
|
110
|
/*width: 14%;*/
|
290b2527
Alexey Boroda
-Style fixes
|
111
|
min-width: 76px;
|
0e1b5efa
Alexey Boroda
-Main menu align
|
112
|
max-width: 8.5%;
|
52f6711c
Eugeny Galkovskiy
123
|
113
|
}
|
cfc165f0
Eugeny Galkovskiy
123
|
114
|
.menu li a:after {
|
52f6711c
Eugeny Galkovskiy
123
|
115
|
content: '';
|
cfc165f0
Eugeny Galkovskiy
123
|
116
117
118
119
|
top: calc(50% - 13px);
right: 0px;
width: 1px;
height: 25px;
|
3809bc04
Alexey Boroda
-Main menu align
|
120
|
/*background: #bbbbbb;*/
|
cfc165f0
Eugeny Galkovskiy
123
|
121
122
|
position: absolute;
}
|
1e485eed
Eugeny Galkovskiy
123
|
123
|
.menu .dropd_menu a:after, .menu li:last-child a:after{
|
cfc165f0
Eugeny Galkovskiy
123
|
124
|
display: none;
|
4ca21c3e
Alexey Boroda
first commit
|
125
126
127
128
129
130
131
132
|
}
.menu li a{
text-align: center;
font-size: 15px;
display: block;
margin: 0 auto;
line-height: 20px;
width: 100%;
|
3809bc04
Alexey Boroda
-Main menu align
|
133
|
padding: 5px 0;
|
cfc165f0
Eugeny Galkovskiy
123
|
134
|
position: relative;
|
4ca21c3e
Alexey Boroda
first commit
|
135
136
|
}
.menu li a:hover, .menu li a.active{
|
4ca21c3e
Alexey Boroda
first commit
|
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
|
color:#a9aaa9;
}
.menu a.active{
cursor: default;
}
a, a:focus{
color:#000000;
transition: 0.2s;
text-decoration: none;
}
a:hover, a:active{
text-decoration: none;
background-color: inherit!important;
color:#a9aaa9;
}
footer{
|
793c1146
Eugeny Galkovskiy
123
|
155
156
|
background-color: black;
color: white;
|
4ca21c3e
Alexey Boroda
first commit
|
157
|
text-align: center;
|
793c1146
Eugeny Galkovskiy
123
|
158
159
|
min-height: 225px;
padding-top: 40px;
|
fa466799
Eugeny Galkovskiy
123
|
160
161
162
|
}
footer .container{
max-width: 1070px;
|
2d43423d
Eugeny Galkovskiy
123
|
163
|
padding-right: 45px;
|
8e75cbad
Eugeny Galkovskiy
123
|
164
|
padding-left: 6px;
|
4ca21c3e
Alexey Boroda
first commit
|
165
166
167
168
169
170
|
}
footer a{
color: #fff;
}
footer .fleft{
padding-bottom:25px;
|
54e2b8f4
Eugeny Galkovskiy
123
|
171
|
margin-left: 27px;
|
4ca21c3e
Alexey Boroda
first commit
|
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
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
|
}
footer .fcenter ul li a{
color: rgba(255, 255, 255, 0.9);
background-image: url('../images/line4.png');
background-repeat: no-repeat;
background-position: 0px 30px;
padding: 5px 0px;
font-weight: 600;
}
footer .fcenter ul li a:hover{
background-position: 0px 20px;
}
footer .fleft p{
font-size: 10px;
font-family: 'Lato-Light';
font-weight: 600;
letter-spacing: 0.2px;
background-image: url('../images/logo_small.png');
background-position: top center;
background-repeat: no-repeat;
padding: 110px 0px 0px 0px;
}
footer .fcenter{
margin-top: -3px;
padding-bottom:25px;
}
footer .fcenter ul li{
text-align: left;
text-transform: uppercase;
list-style: none;
font-size: 12px;
font-family: 'Lato-Light';
letter-spacing: 0.5px;
padding-bottom: 10px;
}
footer .fcenter ul li a:hover{
color:#aba9a9;
}
footer .fcenter ul li a:active,footer .fcenter ul li a:focus{
color:#fff;
}
footer .fright{
|
6cedf854
Eugeny Galkovskiy
123
|
215
|
padding-bottom: 25px;
|
54e2b8f4
Eugeny Galkovskiy
123
|
216
|
margin-left: 3px;
|
4ca21c3e
Alexey Boroda
first commit
|
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
|
}
footer .fright .hours{
text-align: right;
font-size: 12px;
text-transform: uppercase;
letter-spacing: 0.75px;
line-height: 21px;
margin-top: 38px;
}
footer .socbuts ul{
display: flex;
justify-content: flex-end;
}
footer .socbuts ul li{
list-style: none;
padding-left: 22px;
}
footer .socbuts a:hover{
opacity:0.6;
}
|
ace53bc5
Eugeny Galkovskiy
123
|
237
238
239
240
241
242
243
|
.contacts_block{
display: flex;
width: 100%;
max-width: 1062px;
margin: 0 auto;
margin-bottom:25px;
}
|
fa466799
Eugeny Galkovskiy
123
|
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
|
.pagination{
display: flex;
justify-content: center;
margin: 56px 0px;
}
.pagination, .pagination a, .pagination span{
font-family: Arial, sans-serif!important;
font-weight: bold;
color:#9b9999!important;
font-size: 12px;
background-position: center;
background-repeat: no-repeat;
}
.pagination li a, .pagination li span{
padding: 1px 8.5px;
}
.pagination .active a{
background-color: initial!important;
border-color: #d2d2d2!important;
color:#000!important;
}
.pagination .left_pg span, .pagination .right_pg span, .pagination .left_pg a, .pagination .right_pg a{
background-color: #d2d2d2;
padding: 1px 9.5px;
}
.pagination .left_pg a, .pagination .left_pg span{
background-image: url(../images/left_ar.png);
font-size:0px;
width: 28px;
height: 21px;
}
.pagination .right_pg a, .pagination .right_pg span{
background-image: url(../images/right_ar.png);
font-size:0px;
width: 28px;
height: 21px;
}
|
4ca21c3e
Alexey Boroda
first commit
|
283
|
.main-box1{
|
248abc37
Eugeny Galkovskiy
123
|
284
|
position: relative;
|
3d73dfc2
Eugeny Galkovskiy
123
|
285
|
max-width: 994px;
|
40dde429
Eugeny Galkovskiy
123
|
286
|
margin: 0 auto;
|
6f7bcc4d
Eugeny Galkovskiy
123
|
287
|
min-height: 300px;
|
4ca21c3e
Alexey Boroda
first commit
|
288
|
text-align: center;
|
248abc37
Eugeny Galkovskiy
123
|
289
|
}
|
6f7bcc4d
Eugeny Galkovskiy
123
|
290
291
292
293
294
295
|
.main-box1 a img{
max-width: 298px;
max-height: 175px;
width: 100%;
height: 100%;
}
|
248abc37
Eugeny Galkovskiy
123
|
296
297
|
.main-box1:after {
content: '';
|
a0eef081
Eugeny Galkovskiy
123
|
298
|
max-width: calc(100% - 33px);
|
6afbea9a
Eugeny Galkovskiy
123
|
299
|
width: 100%;
|
a0eef081
Eugeny Galkovskiy
123
|
300
|
margin-left: 17px;
|
248abc37
Eugeny Galkovskiy
123
|
301
302
|
position: absolute;
height: 1px;
|
fa466799
Eugeny Galkovskiy
123
|
303
|
background-color: #cecece;
|
248abc37
Eugeny Galkovskiy
123
|
304
305
|
bottom: 0px;
left: 0;
|
4ca21c3e
Alexey Boroda
first commit
|
306
307
308
309
310
|
}
.main-box1 .title{
font-family: 'Lato-Medium';
text-transform: uppercase;
font-size: 11px;
|
4ca21c3e
Alexey Boroda
first commit
|
311
312
313
314
315
316
317
318
319
320
321
322
323
|
color: black;
padding: 13px;
background-image: url('../images/line4.png');
background-position: center 55px;
background-repeat: no-repeat;
transition:0.2s;
margin-bottom: 12px;
}
.main-box1 a:hover .title{
color:#9f9e9e;
background-position: center 33px;
}
.carousel{
|
b6dd46b6
Eugeny Galkovskiy
123
|
324
|
max-width: 960px;
|
ad467e94
Eugeny Galkovskiy
123
|
325
|
margin: 0 auto!important;
|
42e6c978
Eugeny Galkovskiy
123
|
326
|
position: relative;
|
4ca21c3e
Alexey Boroda
first commit
|
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
|
}
.link_big{
padding: 31px 0px 15px 0px;
}
.link_big a{
font-family: 'Lato-Bold';
text-transform: uppercase;
font-size: 18px;
padding: 7px 11px 3px 12px;
margin:15px;
transition:0.2s;
}
.link_big a:hover{
border: 1px solid #9f9e9e;
}
.main-box2{
|
cdeb04bc
Eugeny Galkovskiy
123
|
343
|
max-width: 990px;
|
922ea3e1
Eugeny Galkovskiy
123
|
344
|
margin: 0 auto;
|
4ca21c3e
Alexey Boroda
first commit
|
345
346
347
348
349
350
351
|
padding-bottom:10px;
padding-top: 52px;
background-image:url('../images/line3.png');
background-repeat:no-repeat;
background-position: bottom center;
}
.main-box3{
|
fa466799
Eugeny Galkovskiy
123
|
352
|
max-width: 1000px;
|
922ea3e1
Eugeny Galkovskiy
123
|
353
354
|
margin: 0 auto;
letter-spacing: 0.4px;
|
4ca21c3e
Alexey Boroda
first commit
|
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
|
padding: 10px 0;
background-image:url('../images/line3.png');
background-repeat:no-repeat;
background-position: bottom center;
}
.main-box3 .title{
margin-top: 15px;
color:#000000;
text-transform: uppercase;
font-family: 'Lato-Light';
font-size:24px;
text-align: center;
font-weight: 600;
}
.main-box3 ul{
margin: 14px 0px;
}
.main-box3 ul li{
list-style: none;
font-family: 'Lato-Medium';
font-size: 16px;
padding: 4px 0px 3px 0px;
}
.main-box4{
|
ddc247a6
Eugeny Galkovskiy
123
|
379
|
min-height: 410px;
|
4ca21c3e
Alexey Boroda
first commit
|
380
381
|
text-align: center;
padding-top: 32px;
|
54e2b8f4
Eugeny Galkovskiy
123
|
382
|
max-width: 1064px;
|
fa466799
Eugeny Galkovskiy
123
|
383
|
margin: 0 auto;
|
4ca21c3e
Alexey Boroda
first commit
|
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
|
}
.main-box4 a:hover{color:black;}
.main-box4 .picture{
width: 85.2%;
background-color: #a4a2a2;
padding-top: 46.299%;
margin: 0 auto;
overflow: hidden;
position: relative;
max-height:250px;
}
.main-box4 .picture.h240{
max-height:243px;
padding-top: 45%;
}
.main-box4 .picture img{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
}
.main-box4 .title{
font-size:14px;
text-transform: uppercase;
text-align: center;
padding: 10px;
font-weight: 600;
background-image: url('../images/line5.png');
background-repeat: no-repeat;
background-position: center 65px;
transition:0.2s;
}
.main-box4 a:hover .title{
|
922ea3e1
Eugeny Galkovskiy
123
|
418
|
background-position: center 33.5px;
|
4ca21c3e
Alexey Boroda
first commit
|
419
420
421
422
423
|
}
.main-box4 .col-md-6{
padding-bottom: 7px;
}
.main-box5{
|
922ea3e1
Eugeny Galkovskiy
123
|
424
|
font-size: 15px;
|
4ca21c3e
Alexey Boroda
first commit
|
425
|
line-height: 24px;
|
258613e7
Eugeny Galkovskiy
123
|
426
|
margin-top: 35px;
|
4fced2f6
Eugeny Galkovskiy
123
|
427
|
margin-bottom: 50px;
|
3d73dfc2
Eugeny Galkovskiy
123
|
428
|
max-width: 960px;
|
922ea3e1
Eugeny Galkovskiy
123
|
429
430
|
margin-left: auto;
margin-right: auto;
|
4ca21c3e
Alexey Boroda
first commit
|
431
432
|
}
.main-box5 p{
|
922ea3e1
Eugeny Galkovskiy
123
|
433
|
padding: 0;
|
4ca21c3e
Alexey Boroda
first commit
|
434
|
margin: 0px 0px 21px 0px;
|
922ea3e1
Eugeny Galkovskiy
123
|
435
436
|
letter-spacing: 0.4px;
font-family: 'Lato-Medium';
|
4ca21c3e
Alexey Boroda
first commit
|
437
|
}
|
3b6f61bc
Alexey Boroda
-Simple spoiler
|
438
|
.just-more, .more{
|
4ca21c3e
Alexey Boroda
first commit
|
439
440
|
display: flex;
justify-content: flex-end;
|
23785dda
Eugeny Galkovskiy
123
|
441
|
padding-top:15px;
|
4ca21c3e
Alexey Boroda
first commit
|
442
|
}
|
3b6f61bc
Alexey Boroda
-Simple spoiler
|
443
|
.just-more a,.more a{
|
4ca21c3e
Alexey Boroda
first commit
|
444
445
446
447
448
449
450
451
452
453
454
|
float: right;
text-transform: uppercase;
font-size: 11px;
font-family: 'Lato-Bold';
width: 130px;
height: 22px;
text-align: center;
line-height: 19px;
border: 2px solid #d2d2d2;
color:#9e9e9e;
}
|
3b6f61bc
Alexey Boroda
-Simple spoiler
|
455
|
.just-more a:hover, .more a:hover {
|
4ca21c3e
Alexey Boroda
first commit
|
456
457
458
459
460
461
462
463
464
465
|
border: 2px solid #d2d2d2;
color:#fff;
background-color: #d2d2d2!important;
}
.item .slide_img{
height: 420px;
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
}
|
94bc6174
Eugeny Galkovskiy
123
|
466
467
468
469
470
471
472
|
.oldsite_down{
height: 52px;
background-color: #fff;
display: flex;
justify-content: center;
align-items: center;
}
|
71dd93d4
Eugeny Galkovskiy
123
|
473
474
475
476
477
478
479
|
.oldsite_down a{
border: 2px solid black;
text-align: center;
color: black;
padding: 7px 48px 6px;
}
.oldsite_down a:hover{
|
cba114a1
Eugeny Galkovskiy
123
|
480
|
background-color: black!important;
|
71dd93d4
Eugeny Galkovskiy
123
|
481
482
|
color: #ffffff;
}
|
4ca21c3e
Alexey Boroda
first commit
|
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
|
.carbut{
width: 52px;
position: absolute;
height: 100%;
top: 0;
background-color: rgba(0,0,0,0);
background-position: center;
background-repeat:no-repeat;
opacity:0.57;
transition:0.2s;
}
.carbut:hover{
background-color:rgba(0,0,0,0);
opacity: 1;
}
.carbut.left{
left: 0;
background-image:url('../images/slide_left.png');
}
.carbut.right{
right: 0;
background-image:url('../images/slide_right.png');
}
.carousel-indicators li {
margin: 0 3px;
display: inline-block;
width: 6px;
height: 6px;
text-indent: -999px;
cursor: pointer;
border-radius: 10px;
background-color: white;
opacity: 0.57;
}
.carousel-indicators .active {
margin: 0 3px;
display: inline-block;
width: 6px;
height: 6px;
text-indent: -999px;
cursor: pointer;
border-radius: 10px;
background-color: white;
background-color: #fff;
opacity: 1;
}
.post_cont{
display: flex;
align-items: center;
flex-wrap: wrap;
|
fa466799
Eugeny Galkovskiy
123
|
534
|
position: relative;
|
4ca21c3e
Alexey Boroda
first commit
|
535
|
align-content: center;
|
4ca21c3e
Alexey Boroda
first commit
|
536
537
|
}
.post_cont .text{
|
cdeb04bc
Eugeny Galkovskiy
123
|
538
|
width: 300px;
|
377dc454
Eugeny Galkovskiy
123
|
539
|
margin: 0 20px;
|
cdeb04bc
Eugeny Galkovskiy
123
|
540
|
margin-right: 0;
|
4ca21c3e
Alexey Boroda
first commit
|
541
|
color: #838383;
|
922ea3e1
Eugeny Galkovskiy
123
|
542
|
font-family: 'Lato-Medium';
|
4ca21c3e
Alexey Boroda
first commit
|
543
|
font-size: 14px;
|
5d2e412d
Eugeny Galkovskiy
123
|
544
545
|
max-height: 145px;
overflow: hidden;
|
4ca21c3e
Alexey Boroda
first commit
|
546
|
}
|
fa466799
Eugeny Galkovskiy
123
|
547
548
549
550
551
|
.post_cont .more{
position: absolute;
right: 0;
bottom: 0;
}
|
4ca21c3e
Alexey Boroda
first commit
|
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
|
.post .title{
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
align-items: center;
margin-bottom: 12px;
}
.post .date{
color:#b8b8b8;
font-family:'Lato-Light';
font-size:46px;
margin-right: 28px;
}
.post .title_text{
text-transform: uppercase;
font-size: 17px;
width: 300px;
line-height: 20px;
margin-top: -4px;
}
.dates_but{
margin-left: 145px;
}
.dates_but a{
text-transform: uppercase;
font-family: 'Lato-Bold';
font-size: 18px;
|
865ec2ef
Eugeny Galkovskiy
123
|
579
|
padding: 7px 0;
|
4ca21c3e
Alexey Boroda
first commit
|
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
|
border-bottom: 1px solid #d9d9d9;
}
.but_lines:before{
content: '';
position: absolute;
width: 40px;
height: 1px;
background-color: #d9d9d9;
top: 0;
left: 36%;
}
.but_lines:after{
content: '';
position: absolute;
width: 40px;
height: 1px;
background-color: #d9d9d9;
bottom: 0;
left: 36%;
}
.but_lines{
position: relative;
font-size: 11px;
text-transform: uppercase;
padding: 10px 15px 9px 15px;
/*
background-image: url('../images/two_lines.png');
background-position: center center;
background-repeat: no-repeat;
*/
box-shadow: inset 0px 0px 0px 0px #d9d9d9;
}
.but_lines:hover{
background-image:none;
box-shadow: inset 0px 0px 0px 1px #d9d9d9;
}
.mar13_17{
margin: 13px 0px 17px 0px;
}
.center_line{text-align: center;display: block;}
.big_link{
text-transform: uppercase;
font-family: 'Lato-Bold';
font-size: 18px;
border-bottom: 1px solid rgba(0,0,0,0);
}
.blog_block{text-align: center;margin:16px 0;}
.blog_link .center_line{
font-family: 'Lato-Medium';
font-size: 11px;
text-transform: uppercase;
font-weight: 700;
background-image: url('../images/line3.png');
background-repeat: no-repeat;
background-position: center 50px;
transition:0.2s;
padding: 14px 0px;
}
.blog_link:hover .center_line{
background-position: center 34px;
}
|
922ea3e1
Eugeny Galkovskiy
123
|
641
642
643
644
|
.main-box2 .post{
margin-top: 14px;
max-width: 683px;
}
|
4ca21c3e
Alexey Boroda
first commit
|
645
646
647
648
649
650
651
|
.nav_up{
font-size: 8.48px;
text-transform: uppercase;
font-weight: bold;
color:#a9a9a9;
padding: 20px 0;
margin-top:8px;
|
6c027e28
Eugeny Galkovskiy
123
|
652
653
654
|
max-width: 980px;
margin-left: auto;
margin-right: auto;
|
4ca21c3e
Alexey Boroda
first commit
|
655
656
657
658
659
660
661
662
663
664
|
}
.nav_up a{
color:#a9a9a9;
}
.nav_up span{
color:black;
}
.title1{
text-align: center;
text-transform: uppercase;
|
4ca21c3e
Alexey Boroda
first commit
|
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
|
font-size: 18px;
}
.title1.left{text-align: left;}
.title2{
text-align: center;
text-transform: uppercase;
font-weight: bold;
font-size: 17px;
padding-top: 12px;
}
.title3{
padding: 0px 0px 30px 0px;
font-family: 'Lato-Light';
font-size: 24px;
text-align: center;
text-transform: uppercase;
color: black;
}
.title3 span{
font-weight: 600;
}
.title_line{
width:100%;
height:25px;
position:relative;
}
.title_line:after{
content: '';
width: 40px;
height: 1px;
background-color: #a9a9a9;
position: absolute;
bottom: 9px;
left: 50%;
margin-left: -20px;
}
.text1{
text-align: center;
text-transform: uppercase;
font-size: 12px;
line-height: 18px;
}
.text1 .b{
font-weight: bold;
}
|
2cc24b9a
Eugeny Galkovskiy
123
|
710
|
.top11_12{margin-top:11px;margin-bottom: 5px;}
|
4ca21c3e
Alexey Boroda
first commit
|
711
|
.map_small{
|
6f125332
Eugeny Galkovskiy
123
|
712
713
|
padding-top: 39.198%;
background-color: #dcdcdc;
|
4ca21c3e
Alexey Boroda
first commit
|
714
|
margin: 14px 13px;
|
9d355d72
Eugeny Galkovskiy
123
|
715
|
margin-top: 13px;
|
4ca21c3e
Alexey Boroda
first commit
|
716
717
|
}
.top4{margin-top: 4px;}
|
e31234e3
Eugeny Galkovskiy
123
|
718
719
720
721
|
.showroom{
text-align: center;
display: flex;
justify-content: center;
|
ffd772c5
Eugeny Galkovskiy
123
|
722
|
margin-top: 20px;
|
e31234e3
Eugeny Galkovskiy
123
|
723
|
}
|
63b8dfea
Eugeny Galkovskiy
123
|
724
725
726
727
728
729
730
731
732
733
734
735
|
.oldsite{
color: white;
z-index: 2;
max-width: 205px;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
position: absolute;
right: 0;
}
|
112f8928
Eugeny Galkovskiy
123
|
736
737
738
739
740
741
742
743
744
745
746
747
748
|
.oldsite a{
color: #fff;
text-transform: uppercase;
border: 2px solid #fff;
width: 100%;
text-align: center;
padding-top: 7px;
padding-bottom: 6px;
}
.oldsite a:hover{
border:2px solid black;
background-color:black;
}
|
6f125332
Eugeny Galkovskiy
123
|
749
|
.showroom img{width:100%;max-width:700px;margin:25px auto; margin-bottom: 50px;padding-top:1px;}
|
4ca21c3e
Alexey Boroda
first commit
|
750
751
752
753
754
755
756
757
758
759
|
.no_btm{margin-bottom: 0!important;padding-bottom: 0!important;}
.no_top{margin-top: 0!important;padding-top: 0!important;}
.titles{
font-family: 'Lato-Light';
text-transform: uppercase;
font-weight: 600;
}
.titles .ti_a{font-size: 24px;padding-bottom: 8px;}
.titles .ti_b{font-size: 17px;padding-bottom: 15px;}
.post_1{
|
3f91d047
Eugeny Galkovskiy
123
|
760
761
|
max-width: 960px;
margin: 0 auto;
|
4ca21c3e
Alexey Boroda
first commit
|
762
763
764
765
766
767
|
letter-spacing: 1px;
}
.post_1_main{
color: #777777;
font-size: 15px;
font-family: 'Lato-Medium';
|
495be6b7
Eugeny Galkovskiy
123
|
768
|
margin: 0 auto;
|
d03b9668
Eugeny Galkovskiy
123
|
769
|
max-width: 1110px;
|
77a9ce57
Eugeny Galkovskiy
123
|
770
|
margin-bottom: 50px;
|
4ca21c3e
Alexey Boroda
first commit
|
771
772
773
774
775
776
777
|
}
.textitle_bottom .post_1_main{
letter-spacing: 0.4px;
margin-top: 1px;
margin-bottom: 12px;
}
.textile_bottom{
|
4ca21c3e
Alexey Boroda
first commit
|
778
|
float: left;
|
5eb57074
Eugeny Galkovskiy
123
|
779
|
margin: 40px auto;
|
987739f1
Alexey Boroda
-Simple spoiler
|
780
|
width: 100%;
|
4ca21c3e
Alexey Boroda
first commit
|
781
782
783
784
785
786
|
}
.textile_bottom.tb1{
margin-top: 73px;
}
.textile_bottom .title1{
margin: 1px;
|
0bca671e
Eugeny Galkovskiy
123
|
787
|
margin-right: 95px;
|
4ca21c3e
Alexey Boroda
first commit
|
788
789
790
791
|
}
.textile_bottom .post_1_main{
margin-bottom: 12px;
letter-spacing: 0.4px;
|
0bca671e
Eugeny Galkovskiy
123
|
792
|
margin-right: 95px;
|
fad6b41c
Eugeny Galkovskiy
123
|
793
|
margin-top: 7px;
|
4ca21c3e
Alexey Boroda
first commit
|
794
795
|
}
.post_1 .titles{
|
74c56504
Eugeny Galkovskiy
123
|
796
|
padding-left: 50px;
|
4ca21c3e
Alexey Boroda
first commit
|
797
798
799
800
|
}
.textitle_bottom{
margin-bottom: 134px;
}
|
3a423558
Eugeny Galkovskiy
123
|
801
|
.tb2 .content > .title1.left, .tb2 .content > .post_1_main, .tb2 .content > .more{
|
c17105bb
Eugeny Galkovskiy
123
|
802
803
|
margin-right:0px!important;
}
|
4ca21c3e
Alexey Boroda
first commit
|
804
805
|
.post_1_start{
display: flex;
|
74c56504
Eugeny Galkovskiy
123
|
806
|
padding-left: 50px;
|
4ca21c3e
Alexey Boroda
first commit
|
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
|
padding-bottom: 43px;
letter-spacing: 0.4px;
font-size: 15px;
color: #777777;
flex-wrap: wrap;
}
.post_1_start .pic{
padding-right: 14px;
}
.post_1_start .pic img{width:100%;}
.post_1_start .text{
max-width: 432px;
padding-left: 12px;
}
.post_1_main .more{
margin-top: -17px;
margin-bottom: 16px;
}
|
3b6f61bc
Alexey Boroda
-Simple spoiler
|
825
826
827
|
.simple-spoiler {
overflow: hidden;
}
|
4ca21c3e
Alexey Boroda
first commit
|
828
|
.text_left{
|
b2a44ebb
Eugeny Galkovskiy
123
|
829
|
padding-left: 50px;
|
4ca21c3e
Alexey Boroda
first commit
|
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
|
padding-right: 40px;
}
.text_left.text2{
letter-spacing: 0.4px;
color:#777777;
}
.title_tl{
font-size: 17px;
text-transform: uppercase;
padding-bottom: 15px;
padding-top: 18px;
color: black;
}
.text .link_to_cat{
padding-top: 10px;
}
.text .picture{
max-width: 595px;
max-height: 266px;
background-color: grey;
width: 100%;
padding-top: 44.706%;
position: relative;
margin-top: 15px;
margin-bottom: 27px;
background-position: center;
background-size: cover;
}
.text .tags{
margin-top: 7px;
}
.link_to_cat a{
background-color: #e4e4e4;
text-transform: uppercase;
font-weight: bold;
font-size: 12px;
padding: 12px 26px 11px 17px;
background-image: url(../images/line6.png);
background-repeat: no-repeat;
position: relative;
background-position: center 45px;
}
.link_to_cat a.big{
padding: 12px 48px 11px 37px;
}
.link_to_cat a:hover{
|
abefa42d
Eugeny Galkovskiy
123
|
876
877
|
color: black;
background-color: #decfc8!important;
|
4ca21c3e
Alexey Boroda
first commit
|
878
879
880
881
882
883
884
885
886
887
888
889
890
|
}
.link_to_cat a:before{
content: '';
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
background-image: url('../images/arrow_right.png');
background-position: 93% center;
background-repeat: no-repeat;
margin-top: -1px;
}
|
4ca21c3e
Alexey Boroda
first commit
|
891
|
.post_1.contract img{max-height:222px;}
|
fa466799
Eugeny Galkovskiy
123
|
892
|
.blocks{text-align: center;letter-spacing: normal;text-transform: uppercase;margin-top: 36px;margin-left: 9px;padding: 0 13px;}
|
495be6b7
Eugeny Galkovskiy
123
|
893
894
|
.post_1.contract .blocks{
padding: 0;
|
9350bc31
Eugeny Galkovskiy
123
|
895
|
max-width: 990px;
|
495be6b7
Eugeny Galkovskiy
123
|
896
|
margin: 0 auto;
|
2a8addac
Eugeny Galkovskiy
123
|
897
|
margin-top: 36px;
|
495be6b7
Eugeny Galkovskiy
123
|
898
|
}
|
fa466799
Eugeny Galkovskiy
123
|
899
900
901
902
903
|
.blocks .title{
padding: 17px 0px 9px 0px;
}
.blocks .title a{
|
4ca21c3e
Alexey Boroda
first commit
|
904
905
906
|
font-size: 14px;
font-family: 'Lato-Medium';
font-weight: bold;
|
4ca21c3e
Alexey Boroda
first commit
|
907
908
|
}
.blocks a:hover{color:black!important;}
|
18c86146
Eugeny Galkovskiy
123
|
909
910
911
912
913
|
.b1{
margin: 0;
padding: 0;
padding-bottom: 6px;
}
|
4ca21c3e
Alexey Boroda
first commit
|
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
|
.blocks .labels{padding: 15px 0px;position: relative;}
.blocks .line1{font-size: 24px;}
.blocks .line2{
font-size: 11px;
font-weight: bold;
padding: 9px 0;
}
.blocks .labels:before{
content: '';
position: absolute;
background-image: url('../images/line7.png');
background-position: top center;
background-repeat: no-repeat;
width: 100%;
height: 1px;
left: 0;
top: 0px;
}
.mt12{margin-top:12px;}
.col-md-12.b1 img{width:100%!important;}
.col-md-6.b1 .picture{
background-color: #cccccc;
padding-top: 42%;
width: 100%;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
max-width: 469px;
margin: 0 auto;
max-height: 222px;
}
.col-md-12.b1 .picture{
padding-top: 21%;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
max-height: 222px;
|
495be6b7
Eugeny Galkovskiy
123
|
951
|
max-width: 1010px;
|
4ca21c3e
Alexey Boroda
first commit
|
952
953
954
955
956
|
margin: 0 auto;
}
.tile_1{
width: 100%;
max-width: 227px;
|
2cb9cf91
Eugeny Galkovskiy
123
|
957
|
height: 240px;
|
4ca21c3e
Alexey Boroda
first commit
|
958
959
960
961
962
963
964
965
|
position: relative;
text-align: center;
text-transform: uppercase;
margin: 0 auto;
}
.tile_2{
width: 100%;
max-width: 305px;
|
4ca21c3e
Alexey Boroda
first commit
|
966
967
968
969
|
position: relative;
text-align: center;
text-transform: uppercase;
margin: 0 auto;
|
7b0fb9f9
Eugeny Galkovskiy
123
|
970
|
margin-bottom: 20px;
|
4ca21c3e
Alexey Boroda
first commit
|
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
|
}
.tile_1 .picture, .tile_2 .picture{
width:100%;
background-color:#cccccc;
padding-top: 80%;
background-position:center center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
overflow: hidden;
}
.tile_2 .picture{
padding-top: 85%;
}
.tile_1 .title_1, .tile_2 .title_1{
font-size: 15px;
padding-bottom: 1px;
|
2cb9cf91
Eugeny Galkovskiy
123
|
988
|
padding-top: 15px;
|
4ca21c3e
Alexey Boroda
first commit
|
989
990
991
|
}
.tile_1 .title_2, .tile_2 .title_2{font-size: 10px;}
.tile_1 a, .tile_1 a:hover, .tile_2 a, .tile_2 a:hover, .tile3 a:hover, .tile4 a:hover{color:#414143!important;}
|
0c7dfb44
Eugeny Galkovskiy
123
|
992
|
.tile_1 .picture:after, .tile_2 .picture:after, .tile3 .picture:after, .tile4 .picture:after, .cols a:after, .actions_cont .picture:after{
|
4ca21c3e
Alexey Boroda
first commit
|
993
994
995
996
997
998
999
1000
1001
1002
1003
|
content: '';
position: absolute;
width: 100%;
height: 100%;
top: -100%;
left: 0;
background-image: url('../images/plus.png');
background-position: center center;
background-repeat: no-repeat;
background-color: rgba(255, 255, 255, 0.83);
}
|
2d7ef064
Alexey Boroda
added menu and pr...
|
1004
1005
|
.actions_cont .picture{overflow:hidden; }
.tile3 .picture, .tile4 .picture, .actions_cont .picture{
|
4ca21c3e
Alexey Boroda
first commit
|
1006
1007
|
position: relative;
}
|
0c7dfb44
Eugeny Galkovskiy
123
|
1008
|
.tile_1 a:hover .picture:after, .tile_2 a:active .picture:after, .tile3 a:active .picture:after, .tile4 a:active .picture:after, .cols a:active:after, .actions_cont a:active .picture:after{
|
4ca21c3e
Alexey Boroda
first commit
|
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
|
top:0;
}
.tile_2 .title_1{
font-family: 'Lato-Light';
font-weight: 600;
}
.tile_2 .title_1 span{
font-family: 'Lato-Medium';
font-weight: 600;
}
.tile3{
text-align: center;
overflow: hidden;
|
e30a8035
Eugeny Galkovskiy
123
|
1022
1023
|
margin-bottom: 15px;
margin-top: 0px;
|
d704c284
Eugeny Galkovskiy
123
|
1024
|
padding: 0!important;
|
4ca21c3e
Alexey Boroda
first commit
|
1025
|
}
|
ef322b46
Eugeny Galkovskiy
123
|
1026
1027
1028
1029
1030
1031
1032
|
.tile3 .picture{
max-height: 222px;
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
}
|
4ca21c3e
Alexey Boroda
first commit
|
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
|
.tile3 .title, .tile4 .title{
font-size: 18px;
text-transform: uppercase;
font-weight: 600;
font-family: 'Lato-Light';
margin-top: 15px;
}
.tile4{
max-width: 330px;
text-align: center;
overflow: hidden;
margin: 0 auto;
}
.tile4 .picture{
position: relative;
overflow: hidden;
text-align: center;
}
.tile4 .title{
margin-top: 13px;
margin-bottom: 12px;
}
.tiles{
margin-top: 30px;
margin-bottom: 50px;
}
.filters{
text-align: center;
}
.button1{
color: #414143;
text-transform: uppercase;
font-weight: bold;
font-size: 13px;
}
.button1 a{
border: 2px solid #898989;
display: flex;
justify-content: center;
align-items: center;
height: 43px;
|
9b3fb449
Eugeny Galkovskiy
123
|
1074
|
padding-left: 2px;
|
4ca21c3e
Alexey Boroda
first commit
|
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
|
max-width: 194px;
padding-top: 4px;
margin:0 auto;
}
.button1 a:hover{
background-color:#898989!important;
color:white;
}
.filters_block{
background-color: #e5e5e5;
padding-bottom: 100%;
max-width: 219px;
margin: 16px auto;
padding-top: 2px;
}
.filters_block .title{
font-size: 15px;
color: #414143;
font-family: 'Lato-Light';
text-transform: uppercase;
font-weight: 600;
padding: 16px;
}
.filters_block input[type="text"]{
margin-top: 2px;
width: 89%!important;
height: 41px;
margin-left: 0px;
outline: none;
font-family: 'Lato-Italic';
font-size: 12px;
color: #b1b1b1;
padding-left: 16px;
letter-spacing: 0.4px;
background-image: url('../images/icon_search.png');
background-position: calc(100% - 14px) center;
background-repeat: no-repeat;
border: 1px solid;
}
.button2 a.punkt, .button2 a.punkt:hover{
background-color: white!important;
color: #414143!important;
|
86ed85cf
Eugeny Galkovskiy
123
|
1117
|
width: 195px!important;
|
4ca21c3e
Alexey Boroda
first commit
|
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
|
display: flex;
margin: 0 auto;
justify-content: center;
align-items: center;
border: 1px solid #b1b1b1;
text-transform: uppercase;
font-size: 16px;
font-family: 'Lato-Light';
font-weight: 600;
line-height: 21px;
padding: 14px;
cursor: default;
position: relative;
}
.button2{
position: relative;
margin: 12px 0;
}
.button2 a.punkt:before, .button3 a.punkt:before{
content: '';
top: 0;
position: absolute;
width: 17px;
background-image: url('../images/arrow_down.png');
background-position: center center;
background-repeat: no-repeat;
height: 100%;
right: 12px;
transition: 0.3s;
}
.button2 a.punkt.opened:before, .button3 a.punkt.opened:before,.more_colls.opened:before{
transform: rotate(180deg);
}
.button3 a.punkt, .button3 a.punkt:hover{
background-color: white!important;
color: #b1b1b1!important;
width: 89%!important;
display: flex;
margin: 0 auto;
align-items: center;
border: 1px solid #b1b1b1;
font-size: 12px;
font-family: 'Lato-Italic';
line-height: 21px;
padding: 9px 16px;
cursor: default;
position: relative;
letter-spacing: 0.4px;
}
.button3 a.nonit, .button3 a.nonit:hover{
font-family: 'Lato-Medium';
}
.button2 .spoiler, .button3 .spoiler{
color:#000000;
|
50e33b07
Eugeny Galkovskiy
123
|
1172
|
width:195px!important;
|
4ca21c3e
Alexey Boroda
first commit
|
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
|
text-align: left;
font-family: 'Lato-Medium';
font-size:12px;
margin:0 auto!important;
background-color:#fff;
border: 1px solid #b1b1b1;
border-top:none;
}
.button3{
margin: 11px 0px;
}
|
3b6f61bc
Alexey Boroda
-Simple spoiler
|
1184
1185
1186
1187
|
.spoiler {
display: none;
width: 100% !important;
}
|
4ca21c3e
Alexey Boroda
first commit
|
1188
1189
|
.spoiler .control-label{display: none;}
.spoiler input[type=checkbox], input[type=radio] {
|
4d7ee438
Alexey Boroda
Changes:
|
1190
1191
1192
|
margin: 1px 0 0;
opacity: 0;
margin-right: 7px;
|
4ca21c3e
Alexey Boroda
first commit
|
1193
1194
|
}
.spoiler label {
|
4d7ee438
Alexey Boroda
Changes:
|
1195
|
display: inline-block;
|
4ca21c3e
Alexey Boroda
first commit
|
1196
1197
1198
1199
|
max-width: 100%;
font-weight: 700;
width: 100%;
letter-spacing: 0.4px;
|
7f2fc700
Eugeny Galkovskiy
123
|
1200
|
background: url(../images/knopka.png);
|
95294564
Eugeny Galkovskiy
123
|
1201
|
background-position: left 2px;
|
4ca21c3e
Alexey Boroda
first commit
|
1202
|
background-repeat: no-repeat;
|
a4ac703c
Eugeny Galkovskiy
123
|
1203
1204
|
padding-left: 20px;
margin-bottom: 5px;
|
4ca21c3e
Alexey Boroda
first commit
|
1205
|
}
|
95294564
Eugeny Galkovskiy
123
|
1206
|
#orderform-username{margin-top:2px;}
|
fec14de9
Eugeny Galkovskiy
123
|
1207
|
#orderform-username input[type=checkbox]{
|
7a74e82c
Eugeny Galkovskiy
123
|
1208
|
display: none!important;
|
13bab85f
Eugeny Galkovskiy
123
|
1209
|
}
|
4ca21c3e
Alexey Boroda
first commit
|
1210
|
.spoiler .form-group{
|
a4ac703c
Eugeny Galkovskiy
123
|
1211
|
margin-bottom: -6px;
|
4ca21c3e
Alexey Boroda
first commit
|
1212
1213
1214
|
padding: 8px 17px;
padding-right: 0;
}
|
64114e01
Eugeny Galkovskiy
123
|
1215
|
.spoiler #orderform-username .l_check label {
|
4ca21c3e
Alexey Boroda
first commit
|
1216
|
background: url('../images/knopkach.png');
|
7f639133
Eugeny Galkovskiy
123
|
1217
|
background-position: left 2px;
|
4ca21c3e
Alexey Boroda
first commit
|
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
|
background-repeat: no-repeat;
}
.caps{text-transform: uppercase;}
.spoiler.caps{font-size:10px!important;}
.spoiler ul{
list-style: none;
padding: 8px 0px;
text-align: center;
}
.spoiler ul li{
padding: 7px 0px;
}
.spoiler ul a{
font-size: 15px;
background-image: url('../images/line4.png');
background-position: bottom center;
background-repeat: no-repeat;
padding-bottom: 7px;
font-family: 'Lato-Light';
font-weight: 600;
}
.spoiler ul a span{font-size:9px;text-transform: uppercase;}
.spoiler ul li:last-child a{background-image: none;}
.blocks .line2 {
font-size: 20px;
font-family: 'Lato-Light';
font-weight: 600;
margin-top: -2px;
margin-bottom: -4px;
}
.blocks.b2 {
text-align: center;
text-transform: uppercase;
margin-top: 26px;
margin-left: 0px;
}
.note{
display: flex;
flex-wrap: wrap;
|
fa466799
Eugeny Galkovskiy
123
|
1258
|
margin: 17px auto 38px auto;
|
6828ae7d
Eugeny Galkovskiy
123
|
1259
|
max-width: 982px;
|
3131055f
Eugeny Galkovskiy
123
|
1260
|
position: relative;
|
4ca21c3e
Alexey Boroda
first commit
|
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
|
}
.note .picture{
width: 100%;
padding-top: 27.778%;
max-width: 450px;
background-color: #dcdcdc;
max-height: 300px;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
|
3131055f
Eugeny Galkovskiy
123
|
1271
|
margin: 0px 20px 0px 10px;
|
4ca21c3e
Alexey Boroda
first commit
|
1272
|
}
|
8f931ba9
Eugeny Galkovskiy
123
|
1273
1274
1275
1276
1277
1278
1279
|
.text_prev{
position: relative;
margin-bottom: 22px;
max-height: 140px;
overflow: hidden;
text-overflow: ellipsis;
}
|
4ca21c3e
Alexey Boroda
first commit
|
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
|
.note .date{
font-size: 46px;
font-family: 'Lato-Light';
color: #b8b8b8;
margin: -12px 0 -3px -2px;
}
.note .title{
font-weight: bold;
text-transform: uppercase;
font-size: 18px;
padding: 6px 0;
max-width: 500px;
}
.note p{
color: #777777;
font-size: 15px;
max-width: 422px;
padding: 2px 0px;
line-height: 18px;
|
4ca21c3e
Alexey Boroda
first commit
|
1299
|
}
|
4ca21c3e
Alexey Boroda
first commit
|
1300
1301
1302
|
a.active{
cursor: default;
}
|
4ca21c3e
Alexey Boroda
first commit
|
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
|
.more_colls{
background-color: #decfc8;
text-transform: uppercase;
font-weight: bold;
padding: 8px 38px 6px 25px;
font-size: 14px;
position: relative;
display: inline-block;
margin-top: 18px;
}
.more_colls:hover{
color:#c29a87;
}
.more_colls:before{
content: '';
top: 0;
position: absolute;
width: 17px;
background-image: url('../images/arrow_down_bl.png');
background-position: center center;
background-repeat: no-repeat;
height: 100%;
right: 12px;
transition: 0.3s;
}
.more_colls:hover:before{
background-image: url('../images/arrow_down_or.png');
}
.filters.f2{
background-image: url('../images/line8.png');
background-position: top center;
background-repeat: no-repeat;
}
.mat_pics{
|
bc185cc1
Eugeny Galkovskiy
123
|
1338
|
margin: 40px auto 210px auto;
|
f5e7fb3f
Eugeny Galkovskiy
123
|
1339
1340
|
float: none;
width: 100%;
|
bc185cc1
Eugeny Galkovskiy
123
|
1341
|
max-width: 1022px;
|
4ca21c3e
Alexey Boroda
first commit
|
1342
1343
1344
|
}
.mat_pic{
margin-bottom: 25px;
|
3f349ac0
Eugeny Galkovskiy
123
|
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
|
width: 170px;
height: 125px;
position: relative;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
.mat_pic img{
max-width: 140px;
max-height: 125px;
|
4ca21c3e
Alexey Boroda
first commit
|
1356
1357
1358
|
}
.brand_logo{
text-align: center;
|
e30a8035
Eugeny Galkovskiy
123
|
1359
|
padding-bottom: 30px;
|
4ca21c3e
Alexey Boroda
first commit
|
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
|
}
.brand_logo img{
max-width: 960px;
max-height: 150px;
}
.brand_title1{
color: #000000;
font-family: 'Lato-Light';
font-size: 24px;
font-weight: 600;
text-align: center;
}
.brand_title1_2{
color: #000000;
font-family: 'Lato-Light';
font-size: 24px;
font-weight: 600;
text-align: center;
text-transform: uppercase;
margin-top: 17px;
margin-bottom: 9px;
}
.brand_title2{
text-align: center;
text-transform: uppercase;
font-family: 'Lato-Light';
font-size: 17px;
}
.brand_title2_2{
text-align: center;
text-transform: uppercase;
font-family: 'Lato-Light';
font-size: 17px;
font-weight: 600;
text-transform: uppercase;
}
|
e30a8035
Eugeny Galkovskiy
123
|
1396
1397
1398
|
.brand .about_brand {
margin-top: 40px!important;
}
|
f355c2b6
Eugeny Galkovskiy
123
|
1399
|
.spoiler-inner div{
|
3a804b54
Eugeny Galkovskiy
123
|
1400
|
font-family: 'Lato-Medium'!important;
|
68a83c7a
Eugeny Galkovskiy
123
|
1401
|
font-size: 14px!important;
|
122b1863
Eugeny Galkovskiy
123
|
1402
|
}
|
2d07a4a5
Eugeny Galkovskiy
123
|
1403
1404
1405
1406
|
.titles .line2{
max-width: 960px;
margin: 0 auto;
}
|
4ca21c3e
Alexey Boroda
first commit
|
1407
1408
1409
1410
1411
|
.title4{
text-transform: uppercase;
font-family: 'Lato-Light';
font-size: 17px;
font-weight: 600;
|
68f0eb36
Eugeny Galkovskiy
123
|
1412
1413
|
margin-left: auto;
margin-right: auto;
|
4ca21c3e
Alexey Boroda
first commit
|
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
|
}
.title5{
text-transform: uppercase;
font-family: 'Lato-Medium';
font-size: 17px;
font-weight: 600;
margin-bottom: 13px;
}
.cover{text-align: center;}
.about_brand p{
font-size: 15px;
font-family: 'Lato-Medium';
color: #777777;
letter-spacing: 0.4px;
}
|
bfe01e08
Eugeny Galkovskiy
123
|
1429
1430
1431
1432
|
.about_brand{
margin: 0 auto;
margin-bottom: 60px;
max-width: 966px;}
|
4ca21c3e
Alexey Boroda
first commit
|
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
|
.blog1{
max-width: 595px;
margin: 0 auto;
}
.blog1 .title{
text-transform: uppercase;
font-size: 21px;
font-weight: bold;
}
.tags .date{
font-size: 12px;
color: #7e7e82;
}
.blog1 p{
font-size: 14px;
color: #777777;
letter-spacing: 0.3px;
}
.blog_tag a{
color: #3a3743;
font-size: 9px;
text-transform: uppercase;
background-color: #eadad4!important;
padding: 7px 9px 5px 9px;
letter-spacing: 0.3px;
margin-right: 3px;
}
.link_to_post{
text-align: center;
margin-top: 19px;
padding-bottom: 68px;
background-image: url('../images/line10.png');
background-repeat: no-repeat;
background-position: center calc(100% - 30px);
}
.link_to_post a{
text-transform: uppercase;
font-size: 11px;
color: #000000;
font-weight: 600;
background-color: #e4e4e4;
padding: 11px 31px 10px 14px;
background-image: url('../images/arrow_right.png');
background-repeat: no-repeat;
background-position: calc(100% - 14px) center;
}
.link_to_post a:hover{
background-color:#eadad4!important;
}
.text3{
text-align: center;
font-size: 15px;
color: #514f4f;
font-family: 'Lato-Light';
font-weight: 600;
letter-spacing: 0.7px;
|
968ef0d3
Eugeny Galkovskiy
123
|
1490
|
max-width: 960px;
|
fa466799
Eugeny Galkovskiy
123
|
1491
|
margin: 0 auto;
|
4ca21c3e
Alexey Boroda
first commit
|
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
|
}
.down_line{
background-image:url('../images/line9.png');
background-position: bottom center;
background-repeat: no-repeat;
padding-bottom:32px;
}
.title6{
text-align: center;
text-transform: uppercase;
font-size: 24px;
letter-spacing: 2.8px;
color: #000000;
margin-bottom: 34px;
margin-top: 27px;
}
.title7{
font-size: 19.75px;
text-transform: uppercase;
text-align: center;
font-family: 'Lato-Light';
font-weight: 600;
color: #000000;
}
|
2d7ef064
Alexey Boroda
added menu and pr...
|
1516
1517
1518
1519
1520
1521
1522
|
.title8{
font-size: 24px;
text-align: center;
text-transform: uppercase;
font-family: 'Lato-Light';
margin-bottom: 17px;
}
|
4ca21c3e
Alexey Boroda
first commit
|
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
|
.title_or{
font-family: 'Open Sans', sans-serif;
font-size: 24px;
color: #dab6a6;
text-align: center;
max-width: 450px;
margin: 6px auto;
line-height: 33px;
padding-top: 29px;
}
.list1{
list-style: none;
font-size: 18px;
letter-spacing: 0.5px;
font-family: 'Lato-Light';
font-weight: 600;
|
968ef0d3
Eugeny Galkovskiy
123
|
1539
|
padding-left: 0px;
|
4ca21c3e
Alexey Boroda
first commit
|
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
|
}
.list1 li{
margin-bottom: 20px;
background-image: url('../images/arrow_right.png');
background-position: 0px 4px;
background-repeat: no-repeat;
padding-left: 24px;
}
.list1_block img{width:100%;}
.list2{
color: #464646;
font-size: 16px;
font-family: 'Lato-Light';
font-weight: 600;
letter-spacing: 0.5px;
|
fa466799
Eugeny Galkovskiy
123
|
1555
|
max-width: 1000px;
|
4ca21c3e
Alexey Boroda
first commit
|
1556
1557
|
margin: 33px auto;
line-height: 19px;
|
e3209ba4
Eugeny Galkovskiy
123
|
1558
|
padding: 0 38px;
|
4ca21c3e
Alexey Boroda
first commit
|
1559
|
}
|
fa466799
Eugeny Galkovskiy
123
|
1560
|
.list-view{
|
f251082c
Eugeny Galkovskiy
123
|
1561
|
max-width: 1010px;
|
fa466799
Eugeny Galkovskiy
123
|
1562
|
margin: 0 auto;
|
f251082c
Eugeny Galkovskiy
123
|
1563
|
padding: 0;
|
fa466799
Eugeny Galkovskiy
123
|
1564
|
}
|
4ca21c3e
Alexey Boroda
first commit
|
1565
1566
1567
|
.list2 li{
margin-bottom: 20px;
}
|
930b75e6
Eugeny Galkovskiy
123
|
1568
1569
1570
1571
|
.blocks_2{
max-width: 1038px;
margin: 0 auto;
}
|
4ca21c3e
Alexey Boroda
first commit
|
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
|
.sec_list{
padding: 43px 0px;
}
.shares{
list-style: none;
position: absolute;
top: 50px;
right: -52px;
}
.shares li a {
width: 30px;
height: 30px;
display: block;
background-position: center;
background-repeat: no-repeat;
}
.shares li a.fb{background-image: url('../images/fb1.jpg');}
.shares li a.fb:hover{background-image: url('../images/fb2.jpg');}
.shares li a.gpl{background-image: url('../images/gpl1.jpg');}
.shares li a.gpl:hover{background-image: url('../images/gpl2.jpg');}
.shares li a.ptst{background-image: url('../images/ptst1.jpg');}
.shares li a.ptst:hover{background-image: url('../images/ptst2.jpg');}
.shares li a.vk{background-image: url('../images/vk1.jpg');}
.shares li a.vk:hover{background-image: url('../images/vk2.jpg');}
.shares li a:hover{background-color: black!important;}
.shares li{margin-bottom: 9px;}
.text{
position: relative;
}
|
46313a44
Eugeny Galkovskiy
123
|
1601
1602
1603
1604
1605
1606
|
.blog_post1 img{
width: 100%!important;
max-width: 960px;
text-align: center;
height: 100%!important;
}
|
4ca21c3e
Alexey Boroda
first commit
|
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
|
p.center{text-align: center;}
p.right{text-align: right;}
.blog_post1{
margin: 5px 0;
}
.blog_post1 p{color:#000000;font-size:16px;font-family: 'Lato-Light';font-weight: 600;max-width: 960px;margin:0 auto;margin: 30px auto;}
.blog_post1 .date{
text-align: center;
font-size: 33px;
font-family: 'Lato-Light';
color: #b8b8b8;
}
.blog_post1 .title{
text-transform: uppercase;
font-size: 29px;
text-align: center;
margin: 0 auto;
max-width: 600px;
line-height: 37px;
color: #000000;
}
.blog_post2{
max-width: 865px;
margin: 0 auto;
}
.blog_post2 .title{
text-align: center;
text-transform: uppercase;
font-size: 21px;
font-weight: bold;
}
.blog_post2 .tags{
margin: 6px 0;
}
.blog_post2 .text-blog{
margin:18px 0;
}
.blog_post2 img:first-child{margin-top:0;}
|
592df05a
Eugeny Galkovskiy
123
|
1645
1646
1647
1648
1649
|
.blog_post2 img{
width: 100%!important;
margin: 9px 0px;
height: 100%!important;
}
|
968ef0d3
Eugeny Galkovskiy
123
|
1650
1651
1652
1653
|
.list1_block{
max-width: 990px;
margin: 0 auto;
}
|
4ca21c3e
Alexey Boroda
first commit
|
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
|
.hidden{display: none;}
.text-blog p{
color: #595656;
font-family: 'Lato-Light';
font-size: 14px;
font-weight: 600;
letter-spacing: 0.4px;
line-height: 20px;
margin: 17px 0px;
}
.shares-blog{
list-style: none;
text-align: center;
|
ce04dea5
Eugeny Galkovskiy
123
|
1669
|
padding: 30px 0px;
|
4ca21c3e
Alexey Boroda
first commit
|
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
|
}
.shares-blog li a {
width: 42px;
height: 42px;
display: block;
background-position: center;
background-repeat: no-repeat;
}
.shares-blog li a.fb{background-image: url('../images/fb4.jpg');}
.shares-blog li a.fb:hover{background-image: url('../images/fb3.jpg');}
.shares-blog li a.gpl{background-image: url('../images/gpl4.jpg');}
.shares-blog li a.gpl:hover{background-image: url('../images/gpl3.jpg');}
.shares-blog li a.ptst{background-image: url('../images/ptst4.jpg');}
.shares-blog li a.ptst:hover{background-image: url('../images/ptst3.jpg');}
.shares-blog li a.vk{background-image: url('../images/vk4.jpg');}
.shares-blog li a.vk:hover{background-image: url('../images/vk3.jpg');}
.shares-blog li a:hover{background-color: black!important;}
.shares-blog li{
display: inline-block;
margin-right:28px;
}
.shares-blog li:last-child{
margin-right:0px;
}
.mat-opt-list{
font-family: 'Lato-Light';
font-weight: 600;
color: #000000;
text-align: center;
margin: 60px 0;
|
17e5f662
Eugeny Galkovskiy
123
|
1700
1701
1702
1703
1704
1705
|
padding: 0;
}
.col-md-12.product{
max-width: 1070px;
margin: 0 auto;
float: none;
|
4ca21c3e
Alexey Boroda
first commit
|
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
|
}
.pic img{
width: 100%;
max-width: 630px;
}
.mat-opt-list ul{
list-style: none;
margin: 0;
padding: 0;
font-size: 17px;
letter-spacing: 0.5px;
text-align: left;
|
f66a9e94
Eugeny Galkovskiy
123
|
1718
|
margin-left: 45px;
|
4ca21c3e
Alexey Boroda
first commit
|
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
|
}
.mat-opt-list ul li{margin-bottom: 20px;}
.mat-opt-list ul li:last-child{margin-bottom: 0px;}
.mat-opt-list ul li span{
color: #9c9c9b;
width: 117px;
display: inline-block;
}
.mat-opt-list .name1{
font-size: 40px;
font-weight: 600;
text-transform: uppercase;
font-family: 'Lato-Medium';
margin-bottom: 3px;
}
.mat-opt-list .name2{
font-size: 22px;
font-weight: 600;
text-transform: uppercase;
margin-bottom: 4px;
|
17e5f662
Eugeny Galkovskiy
123
|
1739
1740
1741
1742
1743
|
max-height: 34px;
width: 100%;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
|
4ca21c3e
Alexey Boroda
first commit
|
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
|
}
.mat-opt-list .name3{
font-size: 17px;
font-weight: 600;
text-transform: uppercase;
font-family: 'Lato-Medium';
margin-bottom: 34px;
}
.collection .head{
text-align: center;
}
.collection .head img{
max-width:960px;
|
fa466799
Eugeny Galkovskiy
123
|
1757
|
/*width:100%;*/
|
4ca21c3e
Alexey Boroda
first commit
|
1758
|
}
|
7cd01149
Eugeny Galkovskiy
123
|
1759
|
.cols{max-width: 1068px;margin: 40px auto 25px;}
|
4ca21c3e
Alexey Boroda
first commit
|
1760
1761
1762
1763
1764
1765
1766
1767
|
.cols a{
max-width: 300px;
overflow: hidden;
display: block;
text-align: center;
margin: 0 auto 30px;
position: relative;
}
|
565da30e
Eugeny Galkovskiy
123
|
1768
|
.collection{
|
f0e9343a
Eugeny Galkovskiy
123
|
1769
|
max-width: 990px;
|
565da30e
Eugeny Galkovskiy
123
|
1770
1771
1772
|
width: 100%;
margin: 0 auto;
}
|
f0e9343a
Eugeny Galkovskiy
123
|
1773
1774
1775
1776
1777
1778
1779
|
.collection .titles .line1{
font-size: 24px;
margin-bottom: 8px;
max-width: 960px;
margin-left: auto;
margin-right: auto;
}
|
4ca21c3e
Alexey Boroda
first commit
|
1780
1781
|
.collection .titles .line2{font-size: 17px;}
.collection .titles{
|
565da30e
Eugeny Galkovskiy
123
|
1782
1783
1784
|
margin: 36px auto 15px auto;
width: 100%;
max-width: 1014px;
|
4ca21c3e
Alexey Boroda
first commit
|
1785
1786
1787
1788
1789
1790
1791
|
}
.collection p{
font-size: 15px;
color: #797877;
line-height: 18px;
letter-spacing: 0.3px;
text-align: justify;
|
565da30e
Eugeny Galkovskiy
123
|
1792
1793
1794
|
width: 100%;
max-width: 1014px;
margin: 0 auto;
|
565da30e
Eugeny Galkovskiy
123
|
1795
1796
1797
1798
1799
|
}
.collection .down .more{
width: 100%;
max-width: 1010px;
margin: 0 auto;
|
4ca21c3e
Alexey Boroda
first commit
|
1800
1801
|
}
.down p{color:#000000;}
|
f0e9343a
Eugeny Galkovskiy
123
|
1802
1803
1804
1805
1806
1807
|
.down{
margin-bottom: 63px;
max-width: 960px;
margin-left: auto;
margin-right: auto;
}
|
4ca21c3e
Alexey Boroda
first commit
|
1808
1809
1810
1811
1812
1813
1814
1815
|
.cols a img{max-width: inherit; width:100%;}
.cols a .label{
height: 40px;
background-color: rgba(0, 0, 0, 0.68);
text-align: center;
position: absolute;
width: 100%;
left: 0;
|
fdde6bd7
Eugeny Galkovskiy
123
|
1816
|
bottom: calc(0% - 40px);
|
4ca21c3e
Alexey Boroda
first commit
|
1817
1818
1819
1820
1821
1822
1823
|
font-size: 14px;
font-weight: 500;
display: flex;
justify-content: center;
align-items: center;
letter-spacing: 0.4px;
}
|
ba96f220
Eugeny Galkovskiy
123
|
1824
|
.cols a:hover .label{
|
fdde6bd7
Eugeny Galkovskiy
123
|
1825
1826
|
bottom:0;
}
|
4ca21c3e
Alexey Boroda
first commit
|
1827
|
.cols a .label span{font-weight: 600;padding-right: 5px;}
|
e49f5038
Eugeny Galkovskiy
123
|
1828
|
.menu .container{position:relative;min-height:45px;}
|
4ca21c3e
Alexey Boroda
first commit
|
1829
1830
1831
|
.menu .container ul li:hover .dropd_menu{
display: block;
}
|
7da7bf23
Eugeny Galkovskiy
123
|
1832
1833
1834
1835
|
.textile_bottom .centered{
max-width: 964px;
margin: 0 auto;
}
|
4ca21c3e
Alexey Boroda
first commit
|
1836
1837
1838
|
.dropd_menu{
position: absolute;
width: 100%!important;
|
fa466799
Eugeny Galkovskiy
123
|
1839
|
font-family: 'Lato-Medium';
|
4ca21c3e
Alexey Boroda
first commit
|
1840
1841
1842
|
font-size: 16px;
background-color: #e9e6e6;
top: 62px;
|
e284141b
Eugeny Galkovskiy
123
|
1843
|
left: 89px;
|
4ca21c3e
Alexey Boroda
first commit
|
1844
|
z-index: 30;
|
2d7ef064
Alexey Boroda
added menu and pr...
|
1845
|
padding: 20px 10px;
|
4ca21c3e
Alexey Boroda
first commit
|
1846
1847
|
display: none;
}
|
7d6bde40
Eugeny Galkovskiy
123
|
1848
|
.menu .openmenu{
|
04ce45d3
Eugeny Galkovskiy
123
|
1849
1850
|
position: absolute;
z-index: 1;
|
56fa41a9
Eugeny Galkovskiy
123
|
1851
1852
1853
1854
|
width: 40px;
height: 40px;
top: 2%;
left: 2%;
|
04ce45d3
Eugeny Galkovskiy
123
|
1855
|
font-size: 24px;
|
04ce45d3
Eugeny Galkovskiy
123
|
1856
1857
1858
|
justify-content: center;
align-items: center;
font-weight: bold;
|
56fa41a9
Eugeny Galkovskiy
123
|
1859
|
display: none;
|
04ce45d3
Eugeny Galkovskiy
123
|
1860
|
}
|
4ca21c3e
Alexey Boroda
first commit
|
1861
1862
1863
1864
|
.dropd_menu:before {
position: absolute;
content: '';
width: 17%;
|
2d7ef064
Alexey Boroda
added menu and pr...
|
1865
|
min-width: 150px;
|
4ca21c3e
Alexey Boroda
first commit
|
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
|
height: 45px;
background-color: rgba(255, 0, 0, 0);
left: 0;
top: -30px;
}
.dropd_menu ul{
margin-bottom: 10px;
}
.dropd_menu ul li a{
font-weight: 100;
font-size: 14px;
padding: 5px 0;
}
.dropd_menu .title{
padding: 20px;
position: relative;
}
.dropd_menu .title:after{
content: '';
position: absolute;
width: 50%;
top: 0;
left: 25%;
height: 1px;
background-color: rgba(0,0,0,0.15);
margin: 0px;
}
.dropd_menu div:first-child .title:after{display: none;}
|
4ca21c3e
Alexey Boroda
first commit
|
1894
|
|
2d7ef064
Alexey Boroda
added menu and pr...
|
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
|
.action{max-width:260px;margin-bottom: 10px;}
.action img{width:100%; max-width:227px;}
.a_down{
display: flex;
align-items: center;
margin: 11px 0px;
}
.a_down .price{
font-family: 'Lato-Bold';
font-size: 18px;
width: 68px;
border-top: 1px solid #aaaaaa;
text-align: center;
border-bottom: 1px solid #aaaaaa;
height: 36px;
display: flex;
justify-content: center;
align-items: center;
}
.a_down .line1{
font-size: 15px;
font-family: 'Lato-Light';
font-weight: 600;
}
.a_down .line2{font-size: 9.42px;}
.a_down .titles{margin-left: 15px;}
.actions_cont{
display: flex;
flex-wrap: wrap;
|
a8ae765e
Eugeny Galkovskiy
123
|
1925
|
justify-content: flex-start;
|
2d7ef064
Alexey Boroda
added menu and pr...
|
1926
|
overflow: hidden;
|
a8ae765e
Eugeny Galkovskiy
123
|
1927
1928
|
max-width: 1036px;
margin: 0 auto;
|
1e21ad02
Eugeny Galkovskiy
123
|
1929
|
padding-right: 42px;
|
2d7ef064
Alexey Boroda
added menu and pr...
|
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
|
}
.down.act_d{
width: 960px;
margin-left: auto;
margin-right: auto;
}
.d_title{
text-transform: uppercase;
font-size: 18px;
font-weight: 600;
}
.act_d{margin-top:66px;}
|
fa466799
Eugeny Galkovskiy
123
|
1942
|
.act_d p{color:#878686;font-family: 'Lato-Light';font-weight: 600;font-size:15px;letter-spacing: 0.4px;}
|
2d7ef064
Alexey Boroda
added menu and pr...
|
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
|
/**/
.dropd_menu:before {
position: absolute;
content: '';
width: 17%;
min-width: 150px;
height: 45px;
background-color: rgba(255, 0, 0, 0);
left: 0;
top: -30px;
}
.dropd_menu {
width: initial!important;
|
9d811e51
Eugeny Galkovskiy
123
|
1957
|
box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
|
2d7ef064
Alexey Boroda
added menu and pr...
|
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
|
}
.idp_el{
display: inline-block;
}
.idp_el a{
padding: 0!important;
margin-right: 40px!important;
text-align: left!important;
}
.inline_dropb{
padding-left: 38px;
}
|
fa466799
Eugeny Galkovskiy
123
|
1971
1972
|
.textile_bottom .content{
margin: 0 auto;
|
fbb05030
Eugeny Galkovskiy
123
|
1973
|
max-width: 960px;
|
fa466799
Eugeny Galkovskiy
123
|
1974
1975
|
}
|
30089068
Eugeny Galkovskiy
123
|
1976
|
|
0bca671e
Eugeny Galkovskiy
123
|
1977
1978
|
|
30089068
Eugeny Galkovskiy
123
|
1979
1980
1981
1982
1983
1984
1985
|
.comm_line_1 .user_data, .comm_line_1 .user_name{
padding-left: 0;
font-family: 'Lato-Medium';
font-size: 14px;
color: #7e7e82;
float: none;
display: inline;
|
f57e6870
Eugeny Galkovskiy
123
|
1986
|
font-weight:inherit;
|
30089068
Eugeny Galkovskiy
123
|
1987
1988
|
}
.user_txt{
|
f57e6870
Eugeny Galkovskiy
123
|
1989
|
padding-left: 0!important;
|
30089068
Eugeny Galkovskiy
123
|
1990
1991
1992
1993
1994
1995
|
font-size: 15px;
font-family: 'Lato-Medium';
color: #343333;
line-height: 18px;
}
|
9f2ea66f
Eugeny Galkovskiy
123
|
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
|
.form-comm-wr .control-label{display: none;}
.form-comm-wr input, .form-comm-wr textarea {
text-transform: uppercase;
font-size: 11px;
font-weight: 900;
border-radius: 0px;
margin-top: -1px;
outline: none;
resize: none;
|
a8c23c34
Eugeny Galkovskiy
123
|
2007
|
padding: 0px 14px;
|
9f2ea66f
Eugeny Galkovskiy
123
|
2008
|
letter-spacing: 0.5px;
|
106471ae
Alexey Boroda
-Comments finished
|
2009
|
/*box-shadow: none!important;*/
|
17c30848
Eugeny Galkovskiy
123
|
2010
|
border: 1px solid rgb(204, 204, 204);
|
fb88b400
Eugeny Galkovskiy
123
|
2011
|
width: 100%;
|
9f2ea66f
Eugeny Galkovskiy
123
|
2012
|
}
|
c0846b5b
Eugeny Galkovskiy
123
|
2013
2014
2015
|
.form-comm-wr textarea{
padding: 14px;
}
|
398d4b9a
Eugeny Galkovskiy
123
|
2016
2017
2018
|
.input_bl.submit_btn button {
border: 1px solid #9e9e9e;
background-color: #fff;
|
14d303a0
Eugeny Galkovskiy
123
|
2019
|
outline: none!important;
|
398d4b9a
Eugeny Galkovskiy
123
|
2020
2021
2022
2023
2024
2025
2026
|
text-transform: uppercase;
font-size: 11px;
font-weight: 600;
color: #9e9e9e;
letter-spacing: 1px;
padding: 5px 17px;
transition: 0.1s;
|
14d303a0
Eugeny Galkovskiy
123
|
2027
2028
2029
2030
2031
2032
2033
2034
2035
|
border-radius: 0;
}
.input_bl.submit_btn button:hover{
background-color: #9e9e9e;
color: #fff;
}
.input_bl.submit_btn {
text-align: center;
padding: 15px 0px;
|
398d4b9a
Eugeny Galkovskiy
123
|
2036
|
}
|
e3b2a0c7
Eugeny Galkovskiy
123
|
2037
2038
2039
2040
|
.form-comm-wr .input_bl{
float: none;
margin:0;
}
|
d5931e23
Eugeny Galkovskiy
123
|
2041
2042
|
.add_comment{
position: relative;
|
d5931e23
Eugeny Galkovskiy
123
|
2043
2044
|
width: 100%;
max-width: 705px;
|
d6b4206b
Eugeny Galkovskiy
123
|
2045
|
display: none;
|
51752a0c
Eugeny Galkovskiy
123
|
2046
|
margin: 40px auto!important;
|
d5931e23
Eugeny Galkovskiy
123
|
2047
|
}
|
633ff79c
Eugeny Galkovskiy
123
|
2048
2049
2050
2051
|
.form-comm-wr {
width: 100%;
background: none;
padding: 0px;
|
d5931e23
Eugeny Galkovskiy
123
|
2052
|
float: none;
|
633ff79c
Eugeny Galkovskiy
123
|
2053
2054
2055
2056
|
max-width: 705px;
margin: 0 auto;
font-family: 'Lato-Medium';
}
|
ee3f568c
Eugeny Galkovskiy
123
|
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
|
.add_comment .title {
text-align: center;
text-transform: uppercase;
font-size: 15px;
color: #000000;
font-family: 'Lato-Light';
font-weight: 600;
padding: 14px;
}
.close_comm {
position: absolute;
top: 16px;
right: 0;
width: 27px;
height: 27px;
background-image: url(../images/close.png);
transition: 0.1s;
cursor: pointer;
}
.close_comm:hover {
background-image: url(../images/close_hover.png);
}
|
d5931e23
Eugeny Galkovskiy
123
|
2079
2080
2081
|
.artbox_form_container{
max-width: 705px;
margin: 0 auto;
|
c0bc5ea6
Eugeny Galkovskiy
123
|
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
|
}
.otz_buttons {
text-align: center;
text-transform: uppercase;
font-size: 11px;
font-weight: 600;
letter-spacing: 1px;
margin: 44px 0px;
}
.otz_buttons a {
background-color: #e4e4e4;
padding: 11px;
padding-bottom: 10px;
margin: 10px;
background-image: url(../images/arrow_down_bold.png);
background-repeat: no-repeat;
background-position-y: center;
}
.otz_buttons a:hover {
background-color: #ebdbd4!important;
color: #000;
}
.otz_buttons .btn_otz.more1 {
padding-right: 15px;
padding-left: 38px;
background-position-x: 17px;
}
.otz_buttons .btn_otz.write {
padding-right: 42px;
padding-left: 16px;
background-position-x: calc(100% - 16px);
|
d5931e23
Eugeny Galkovskiy
123
|
2113
|
}
|
8d089b44
Eugeny Galkovskiy
123
|
2114
2115
2116
2117
2118
|
.otzivi_block {
width: 100%;
max-width: 865px;
float: none;
margin: 0 auto;
|
cd0469fb
Eugeny Galkovskiy
123
|
2119
|
padding-bottom: 70px;
|
8d089b44
Eugeny Galkovskiy
123
|
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
|
}
.title9 {
color: #847e7e;
font-size: 24px;
text-transform: uppercase;
font-family: 'Lato-Light';
font-weight: 600;
margin-top: 10px;
margin-bottom: 11px;
}
.start_otzivi {
text-align: center;
text-transform: uppercase;
color: #000000;
font-size: 15px;
line-height: 26px;
font-family: 'Lato-Light';
font-weight: 600;
margin-bottom: 15px;
max-width: 640px;
margin-left: auto;
margin-right: auto;
}
|
a1307bf8
Eugeny Galkovskiy
123
|
2143
2144
2145
|
.start_otzivi .title {
font-size: 18px;
}
|
8d089b44
Eugeny Galkovskiy
123
|
2146
2147
2148
2149
2150
2151
2152
2153
|
.comments_block {
border-bottom: 1px solid #d9d9d9;
}
.artbox_item_info {
border-top: 1px solid #d9d9d9;
padding-top: 18px;
padding-bottom: 27px;
}
|
7369da35
Alexey Boroda
-Images from back...
|
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
|
.product-list-item img {
width: 100%;
height: 171px;
}
.product-list-item:hover::after {
background-color: rgba(255, 255, 255, 0.83);
background-image: url("../images/plus.png");
background-position: center center;
background-repeat: no-repeat;
content: "";
height: 171px;
left: 0;
position: absolute;
width: 100%;
|
6229a918
Eugeny Galkovskiy
123
|
2168
|
top:0px;
|
7369da35
Alexey Boroda
-Images from back...
|
2169
|
}
|
15ece6f5
Eugeny Galkovskiy
123
|
2170
|
.comments-wr {
|
2568d1c7
Eugeny Galkovskiy
123
|
2171
|
margin-top: 0px!important;
|
79522de3
Eugeny Galkovskiy
123
|
2172
2173
|
padding-bottom: 16px;
}
|
3a03b330
Eugeny Galkovskiy
123
|
2174
|
.artbox_item_container:last-child .comments-wr{
|
79522de3
Eugeny Galkovskiy
123
|
2175
|
border-bottom: 1px solid #d9d9d9;
|
15ece6f5
Eugeny Galkovskiy
123
|
2176
|
}
|
600ad885
Eugeny Galkovskiy
123
|
2177
2178
2179
2180
|
.comments-start{width:100%!important;}
.submit_btn button, .answer-form button{
height:inherit;
}
|
c14be29f
Eugeny Galkovskiy
123
|
2181
2182
2183
2184
|
.catalog_block{
max-width: 1016px;
margin: 0 auto;
}
|
14771085
Eugeny Galkovskiy
123
|
2185
2186
2187
2188
|
.textile_bottom .simple-spoiler, .textile_bottom .title1.left{
margin: 0 auto;
max-width: 960px;
}
|
5810c672
Eugeny Galkovskiy
123
|
2189
|
.aw_logo{
|
793c1146
Eugeny Galkovskiy
123
|
2190
2191
|
opacity: 0.5;
margin-top: 15px;
|
5810c672
Eugeny Galkovskiy
123
|
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
|
text-align: right;
}
.aw_logo a{
text-align: right;
color: #edeeef;
background: url(../images/aw_logo.png);
background-position: right center;
background-repeat: no-repeat;
padding-top: 6px;
padding-bottom: 4px;
padding-right: 37px;
font-family: sans-serif;
font-size: 12px;
}
|
3f349ac0
Eugeny Galkovskiy
123
|
2206
|
.product .pic{
|
2be798ee
Eugeny Galkovskiy
123
|
2207
|
padding-left: 25px;
|
3f349ac0
Eugeny Galkovskiy
123
|
2208
2209
2210
2211
2212
2213
2214
|
max-width: 630px;
max-height: 390px;
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
}
|
4c1afacd
Eugeny Galkovskiy
123
|
2215
2216
2217
2218
|
.hidemenu{
height: 68px;
position: relative;
}
|
ad62f74d
Eugeny Galkovskiy
123
|
2219
2220
2221
2222
2223
2224
2225
2226
|
.hidemenu a{
position: absolute;
width: 100%;
height: 100%;
background-position: center center;
background-repeat:no-repeat;
background-image: url('../images/hidem1.png');
}
|
d992efc1
Eugeny Galkovskiy
123
|
2227
2228
2229
|
.hidemenu.show a{
background-image: url('../images/hidem2.png');
}
|
7c4e5111
Eugeny Galkovskiy
123
|
2230
2231
|
.picmobile{
width: 100%;
|
ce530932
Eugeny Galkovskiy
123
|
2232
|
padding-top: 10px;
|
7c4e5111
Eugeny Galkovskiy
123
|
2233
|
margin: 0 auto;
|
ce530932
Eugeny Galkovskiy
123
|
2234
2235
2236
|
margin-bottom: -15px;
padding-left: 15px;
padding-right: 15px;
|
7c4e5111
Eugeny Galkovskiy
123
|
2237
2238
|
}
.picmobile .picture2{
|
7c4e5111
Eugeny Galkovskiy
123
|
2239
|
max-height: 175px;
|
ce530932
Eugeny Galkovskiy
123
|
2240
|
display: flex;
|
ce530932
Eugeny Galkovskiy
123
|
2241
2242
|
align-items: center;
justify-content: center;
|
d2b32651
Eugeny Galkovskiy
123
|
2243
2244
2245
2246
|
overflow: hidden;
max-width: 308px;
margin: 0 auto;
position: relative;
|
7c4e5111
Eugeny Galkovskiy
123
|
2247
2248
2249
|
}
.picmobile .picture2 img{
width: 100%;
|
d2b32651
Eugeny Galkovskiy
123
|
2250
|
height: 100%;
|
d3bbeb7e
Eugeny Galkovskiy
123
|
2251
|
max-height: 175px;
|
d2b32651
Eugeny Galkovskiy
123
|
2252
|
max-width: 308px;
|
7c4e5111
Eugeny Galkovskiy
123
|
2253
|
}
|
4ca21c3e
Alexey Boroda
first commit
|
2254
2255
|
/**/
@media (min-width: 1200px){
|
f1d1b971
Eugeny Galkovskiy
123
|
2256
|
.dropd_menu{left:0px;}
|
4ca21c3e
Alexey Boroda
first commit
|
2257
|
.nav_up{
|
7b659389
Eugeny Galkovskiy
123
|
2258
2259
|
max-width: 960px;
margin: 0 auto;
|
4ca21c3e
Alexey Boroda
first commit
|
2260
|
}
|
049feb10
Eugeny Galkovskiy
123
|
2261
|
.col-md-3{
|
d975a6a4
Eugeny Galkovskiy
123
|
2262
2263
|
margin-left: 22px;
margin-right: -22px;
|
049feb10
Eugeny Galkovskiy
123
|
2264
|
}
|
aefe3948
Eugeny Galkovskiy
123
|
2265
2266
2267
2268
|
.filters.col-md-3{
margin-left: 9px;
margin-right: -9px;
}
|
4ca21c3e
Alexey Boroda
first commit
|
2269
2270
|
}
@media (min-width: 992px) and (max-width: 1199px) {
|
dc4c74b9
Eugeny Galkovskiy
123
|
2271
|
.dropd_menu{left:0px;}
|
c92d04dd
Eugeny Galkovskiy
123
|
2272
2273
2274
|
.tile3 {
text-align: center;
overflow: hidden;
|
25b5e1af
Eugeny Galkovskiy
123
|
2275
2276
|
margin-bottom: 0px;
margin-top: 15px;
|
c92d04dd
Eugeny Galkovskiy
123
|
2277
2278
2279
2280
2281
|
padding: 0!important;
margin-left: 5px;
margin-right: 5px;
width: 48%;
}
|
ef322b46
Eugeny Galkovskiy
123
|
2282
|
.post_1 .titles, .text_left{margin-left:0px;}
|
4ca21c3e
Alexey Boroda
first commit
|
2283
2284
2285
|
footer .fleft p{
background-size: contain;
}
|
80f589ee
Eugeny Galkovskiy
123
|
2286
|
.post_cont .text {width: 210px;}
|
4ca21c3e
Alexey Boroda
first commit
|
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
|
.main-box1 img{width:100%;}
.carousel{margin: 0px 14.5px;}
.post_1_start .text {
max-width: 100%;
padding-left: 0px;
padding-top: 15px;
}
.post_1.contract img {width: 100%;}
.blocks{margin-left: 36px;}
.text_left{padding-right: 20px;}
.note .picture{margin: 0 0 25px;}
.note{margin: 17px 0px 75px 0px;}
.tile3 .picture img,.tile4 .picture img{width:100%;}
|
ef322b46
Eugeny Galkovskiy
123
|
2300
|
|
922ea3e1
Eugeny Galkovskiy
123
|
2301
2302
2303
2304
|
.main-box5 {
padding-top: 0px;
max-width: 844px;
}
|
fa466799
Eugeny Galkovskiy
123
|
2305
2306
2307
2308
2309
|
.main-box2 .post {
margin-top: 14px;
max-width: 550px;
margin-left: 30px;
}
|
7eaa01ee
Eugeny Galkovskiy
123
|
2310
|
.menu li + li {
|
e5e8b142
Eugeny Galkovskiy
123
|
2311
|
margin-left: 5.25%;
|
7eaa01ee
Eugeny Galkovskiy
123
|
2312
|
}
|
9282eee5
Eugeny Galkovskiy
123
|
2313
|
.menu li{
|
744bd6be
Eugeny Galkovskiy
123
|
2314
|
max-width: 13%;
|
0eb6f7bd
Eugeny Galkovskiy
123
|
2315
|
}
|
7723e7b3
Eugeny Galkovskiy
123
|
2316
2317
2318
|
footer .fleft{
margin-left:10px;
}
|
60671fb1
Eugeny Galkovskiy
123
|
2319
|
footer .container{
|
7723e7b3
Eugeny Galkovskiy
123
|
2320
2321
|
padding-right: 15px;
}
|
60671fb1
Eugeny Galkovskiy
123
|
2322
2323
2324
|
footer .fright{
margin-left: -10px;
}
|
4ca21c3e
Alexey Boroda
first commit
|
2325
2326
|
}
@media (max-width: 991px) {
|
fd974b50
Eugeny Galkovskiy
123
|
2327
2328
2329
2330
2331
2332
2333
|
.main-box1{
padding-bottom: 10px;
}
.main-box2{
padding-bottom: 30px;
padding-top: 15px;
}
|
0ab7c7ab
Eugeny Galkovskiy
123
|
2334
2335
2336
2337
2338
|
.dates_but{
margin:0;
text-align:center;
margin: 25px 0px;
}
|
a1d2b613
Eugeny Galkovskiy
123
|
2339
2340
|
.blocks_2 .col-md-4.col-sm-6{
padding: 0;
|
a1d2b613
Eugeny Galkovskiy
123
|
2341
|
}
|
3236c3e3
Eugeny Galkovskiy
123
|
2342
|
.button2 a.punkt, .button2 a.punkt:hover{
|
62088aa7
Eugeny Galkovskiy
123
|
2343
|
width: 85%!important;
|
6c027e28
Eugeny Galkovskiy
123
|
2344
2345
|
line-height: 13px;
font-size: 10px;
|
62088aa7
Eugeny Galkovskiy
123
|
2346
2347
2348
|
}
.button2 .spoiler{
width: 85%!important;
|
6c027e28
Eugeny Galkovskiy
123
|
2349
|
}
|
aab65992
Eugeny Galkovskiy
123
|
2350
2351
2352
2353
|
.button2 a.punkt:before, .button3 a.punkt:before{
background-size: 60%;
right: 8px;
}
|
766e7ac9
Eugeny Galkovskiy
123
|
2354
2355
2356
|
.textile_bottom{
margin: 30px auto;
}
|
e09a600a
Eugeny Galkovskiy
123
|
2357
2358
2359
|
.menu .container ul li:hover .dropd_menu{
display:none;
}
|
52bf470b
Eugeny Galkovskiy
123
|
2360
|
.blog1 .text .picture{
|
f3461f4e
Eugeny Galkovskiy
123
|
2361
|
margin-bottom: 53px;
|
52bf470b
Eugeny Galkovskiy
123
|
2362
|
}
|
154e52d9
Eugeny Galkovskiy
123
|
2363
2364
2365
2366
2367
2368
2369
|
.shares{
list-style: none;
position: absolute;
bottom: -52px;
width: 100%;
padding: 0;
margin: 0;
|
f3461f4e
Eugeny Galkovskiy
123
|
2370
2371
|
top: inherit;
right: inherit;
|
154e52d9
Eugeny Galkovskiy
123
|
2372
2373
2374
2375
2376
2377
2378
|
display: flex;
justify-content: center;
}
.shares li{
float: left;
margin-right: 10px;
}
|
fc489344
Eugeny Galkovskiy
123
|
2379
2380
2381
|
.tile_1{
max-width: 218px;
}
|
f70cbba6
Eugeny Galkovskiy
123
|
2382
|
.text_left, .post_1 .titles{
|
62903426
Eugeny Galkovskiy
123
|
2383
|
margin-left:0px;
|
f70cbba6
Eugeny Galkovskiy
123
|
2384
|
}
|
918d9cca
Eugeny Galkovskiy
123
|
2385
|
.navbar-nav{margin:0;}
|
33103268
Eugeny Galkovskiy
123
|
2386
2387
2388
2389
2390
|
footer .fright{
margin-left: 0px;
}
.aw_logo a{
padding-right: 17px;
|
9c8c53f4
Eugeny Galkovskiy
123
|
2391
2392
|
background-size: 15%;
font-size: 11px;
|
33103268
Eugeny Galkovskiy
123
|
2393
|
}
|
4c1afacd
Eugeny Galkovskiy
123
|
2394
2395
|
.menu .container {
padding: 0px;
|
aff39941
Eugeny Galkovskiy
123
|
2396
2397
2398
2399
|
display: none;
}
.menu .container.showed{
display: block;
|
04ce45d3
Eugeny Galkovskiy
123
|
2400
|
}
|
4c1afacd
Eugeny Galkovskiy
123
|
2401
|
.menu .container ul {
|
0c197463
Eugeny Galkovskiy
123
|
2402
2403
|
padding: 0;
border-top: 1px solid black;
|
b9932e1d
Eugeny Galkovskiy
123
|
2404
|
}
|
4c1afacd
Eugeny Galkovskiy
123
|
2405
|
.dropd_menu:before{display:none;}
|
3d4c4dda
Eugeny Galkovskiy
123
|
2406
|
.post_1_main{margin-left:0;}
|
4ca21c3e
Alexey Boroda
first commit
|
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
|
.carousel{margin: 0px auto;}
.post_1_start{padding-left:0px;}
.post_1_start .pic{padding-right:0px;}
.post_1_start .text {
max-width: 100%;
padding-left: 0px;
padding-top: 15px;
}
.post_1 .titles {padding-left: 0px;}
.text_left{padding-left: 0px;padding-right: 0px;}
.blocks{margin-left: 0px;}
.filters_block{padding-bottom: 75px;}
.note .picture{margin: 0 auto 25px;}
.note{margin: 17px 0px 75px 0px;}
|
922ea3e1
Eugeny Galkovskiy
123
|
2421
|
.main-box5 {
|
9dc69cba
Eugeny Galkovskiy
123
|
2422
|
margin: 0 auto;
|
922ea3e1
Eugeny Galkovskiy
123
|
2423
|
max-width: 587px;
|
9dc69cba
Eugeny Galkovskiy
123
|
2424
|
padding: 20px 0 45px;
|
922ea3e1
Eugeny Galkovskiy
123
|
2425
|
}
|
46c949aa
Eugeny Galkovskiy
123
|
2426
2427
2428
|
.menu li{
min-width:100%;
max-width:100%;
|
b97dbd94
Eugeny Galkovskiy
123
|
2429
|
margin:0px!important;
|
46c949aa
Eugeny Galkovskiy
123
|
2430
2431
|
}
.menu .container{
|
e9d4dc0a
Eugeny Galkovskiy
123
|
2432
|
padding: 0px;
|
911800f5
Eugeny Galkovskiy
123
|
2433
2434
|
margin: 0;
width: 100%;
|
46c949aa
Eugeny Galkovskiy
123
|
2435
|
}
|
aa2277b7
Eugeny Galkovskiy
123
|
2436
|
.dropd_menu{
|
8cc9c69a
Eugeny Galkovskiy
123
|
2437
|
position: inherit;
|
ce78e937
Eugeny Galkovskiy
123
|
2438
|
width: 100%!important;
|
ce78e937
Eugeny Galkovskiy
123
|
2439
|
z-index: 30;
|
8cc9c69a
Eugeny Galkovskiy
123
|
2440
|
padding: 0!important;
|
c63d541f
Eugeny Galkovskiy
123
|
2441
2442
|
box-shadow:none;
}
|
89fb10a3
Eugeny Galkovskiy
123
|
2443
|
.dropd_menu.showmob{
|
5e50ab04
Eugeny Galkovskiy
123
|
2444
|
display:block!important;
|
ce78e937
Eugeny Galkovskiy
123
|
2445
2446
2447
2448
2449
2450
2451
2452
|
}
.inline_dropb, .dropd_menu{
padding:0;margin:0;
}
.idp_el{
width: 100%;
padding: 0px;
margin: 0px;
|
aa2277b7
Eugeny Galkovskiy
123
|
2453
|
}
|
fbb0a958
Eugeny Galkovskiy
123
|
2454
2455
2456
2457
2458
|
.menu li a{
height: 45px;
display: flex;
justify-content: center;
align-items: center;
|
13e98dd8
Eugeny Galkovskiy
123
|
2459
|
font-size: 20px;
|
aafeef54
Eugeny Galkovskiy
123
|
2460
|
border-bottom: 1px solid black;
|
fbb0a958
Eugeny Galkovskiy
123
|
2461
|
}
|
4ca21c3e
Alexey Boroda
first commit
|
2462
2463
|
}
@media (max-width: 729px) {
|
34546db4
Eugeny Galkovskiy
123
|
2464
2465
2466
2467
2468
|
.blog_block a img{
max-height: 175px;
width: 100%;
max-width: 308px;
}
|
bd41c3e5
Eugeny Galkovskiy
123
|
2469
2470
2471
|
.main-box1 a img{
max-width:305px;
}
|
f54938c5
Eugeny Galkovskiy
123
|
2472
2473
2474
2475
2476
|
.post_cont{
justify-content: center;
overflow: hidden;
max-width: 308px;
margin: 0 auto;}
|
34546db4
Eugeny Galkovskiy
123
|
2477
2478
2479
2480
2481
2482
|
.post_cont .picture{
max-height: 175px;
display: flex;
align-items: center;
overflow: hidden;
}
|
a97a5798
Eugeny Galkovskiy
123
|
2483
2484
|
.post_cont .text{
width: 100%;
|
dcd18a59
Eugeny Galkovskiy
123
|
2485
2486
|
max-width: 308px;
margin: 20px auto 35px;}
|
4ca21c3e
Alexey Boroda
first commit
|
2487
2488
2489
|
.dates_but {margin:0 auto;text-align: center;}
.post_1.contract img {width: initial;}
.brand_logo img, .tile3 .picture img, .tile4 .picture img{width:100%;}
|
2198c70b
Eugeny Galkovskiy
123
|
2490
|
.main-box3 ul{
|
dcf08d16
Eugeny Galkovskiy
123
|
2491
|
padding: 0 15px;
|
8eb4782b
Eugeny Galkovskiy
123
|
2492
2493
|
max-width: 330px;
margin: 10px auto;
|
2198c70b
Eugeny Galkovskiy
123
|
2494
2495
2496
|
}
.main-box4 .picture{
width: 100%;
|
34546db4
Eugeny Galkovskiy
123
|
2497
|
padding-top: 48.21%;
|
bd41c3e5
Eugeny Galkovskiy
123
|
2498
|
max-width: 305px;
|
baa73973
Eugeny Galkovskiy
123
|
2499
|
padding-top: 45%!important;
|
bd41c3e5
Eugeny Galkovskiy
123
|
2500
|
max-height: 175px!important;
|
2198c70b
Eugeny Galkovskiy
123
|
2501
|
}
|
dcf08d16
Eugeny Galkovskiy
123
|
2502
2503
2504
|
.main-box5 .simple-spoiler{
padding: 0 15px;
}
|
e8c8c2fa
Eugeny Galkovskiy
123
|
2505
|
.main-box5 .just-more, .main-box5 .more{
|
0a9e29a1
Eugeny Galkovskiy
123
|
2506
2507
|
padding-left: 15px;
padding-right: 15px;
|
836765e6
Eugeny Galkovskiy
123
|
2508
2509
|
max-width: 335px;
margin: 0 auto;
|
0a9e29a1
Eugeny Galkovskiy
123
|
2510
|
}
|
8a9045c7
Eugeny Galkovskiy
123
|
2511
2512
2513
2514
|
.main-box5 .spoiler-inner{
max-width: 305px;
margin: 0 auto;
}
|
476f5141
Eugeny Galkovskiy
123
|
2515
|
.main-box2 .post .title{
|
a23a29d3
Eugeny Galkovskiy
123
|
2516
|
max-width: 308px;
|
476f5141
Eugeny Galkovskiy
123
|
2517
2518
2519
|
margin: 0 auto;
margin-bottom: 15px;
}
|
56d2c514
Eugeny Galkovskiy
123
|
2520
|
.main-box1 .title{margin-bottom: 0px;}
|
4ca21c3e
Alexey Boroda
first commit
|
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
|
}
@media (min-width: 705px){
.tiles{
display: flex;
flex-wrap: wrap;
justify-content: center;
}
}
@media (max-width: 576px){
.post_1.contract img {width: 100%;height:100%;}
.about_brand{margin-left:0px;margin-right:0px;}
.col-xs-4.mat_pic a img{width:100%;}
}
@media (max-width: 450px) {
footer .fcenter ul li, footer .fright .hours{font-size: 10px;letter-spacing: -0.1px;}
}
@media (min-width: 410px) and (max-width: 450px){
footer .fright .hours{margin-top: 24px;}
}
@media (max-width: 379px) {
.main-box1 img{width:100%;}
.blog_link img{width: 100%;}
|
df62ac65
Eugeny Galkovskiy
123
|
2543
2544
2545
2546
2547
2548
2549
2550
|
.shares-blog li a {
width: 25px;
height: 25px;
background-size: cover;
display: block;
background-position: center;
background-repeat: no-repeat;
}
|
232fa415
Eugeny Galkovskiy
123
|
2551
|
.link_big a{font-size:13px;}
|
3820d3a5
Eugeny Galkovskiy
123
|
2552
|
.oldsite_down a{font-size:11px;}
|
03761f8e
Eugeny Galkovskiy
123
|
2553
|
header{
|
47da5e7f
Eugeny Galkovskiy
123
|
2554
|
background-size: 70%;
|
03761f8e
Eugeny Galkovskiy
123
|
2555
|
}
|
67782c7b
Eugeny Galkovskiy
123
|
2556
2557
|
footer .fleft p{
background-size: 80%;}
|
dfc5513d
Eugeny Galkovskiy
123
|
2558
2559
2560
2561
2562
2563
|
.tile_1 .title_1, .tile_2 .title_1{
font-size: 12px;
}
.tile_1 .title_2, .tile_2 .title_2{
font-size: 9px;
}
|
4ca21c3e
Alexey Boroda
first commit
|
2564
|
}
|