_map.scss
1.34 KB
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
$heightMap:400;
$blockPadding:30;
.section-box-footer-map {
margin-top: 53px;
background: $Menu-bg;
min-height: $heightMap + px;
}
#map_canvas {
overflow: hidden;
width: 100%;
height: 100%;
position: absolute !important;
left: 0;
top: 0;
z-index: 1;
}
.map-pos-wr {
background: #fff;
position: relative;
z-index: 2;
margin-top: $blockPadding + px;
margin-bottom: $blockPadding + px;
padding: 16px 15px 16px 15px;
left: 0;
min-height: $heightMap - ($blockPadding * 2) + px;
@include Shadow;
}
.position-wr {
margin-top: 13px;
}
.map-title {
font-size: 18px;
font-weight: 700;
}
.cities-wr-map {
position: relative;
text-align: left;
}
.adress-map {
margin-top: 24px;
span {
color: $link-color;
display: block;
width: 100%;
float: left;
margin-top: 13px;
cursor: pointer;
@include Transition(0.05);
&:first-child {
margin-top: 0;
}
&:active {
@include Scale(1.05);
}
}
}
.address_content {display: none;}
@media (max-width: 1200px) {
}
@media (max-width: 992px) {
}
@media (max-width: 767px) {
.section-box-footer-map {
background: #fff;
height: auto;
min-height: 1px;
margin-top: 27px;
}
#map_canvas {
display: none;
}
.map-pos-wr {
margin-top: 0;
margin-bottom: 0;
min-height: 1px;
box-shadow: none;
}
}