_map.scss
3.21 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
#brokercontent {
#sl_div {
#searchForm {
#searching-feedback {
display: block;
float: left;
}
label {
text-align: left;
@media (min-width: 460px) {
text-align: right;
}
}
input[type="text"] {
width: 100%;
@media (min-width: 460px) {
width: 70%;
}
@media (min-width : $breakpoint-mobile) {
width: calc(100% - 200px);
}
}
#radius_in_submit {
margin : 10px 0 0 0;
float: none;
@media (min-width : $breakpoint-mobile) {
//float: left;
display: inline-block;
margin-left: 5px;
margin-top: -5px;
vertical-align: top;
}
input[type="submit"] {
@media (min-width : $breakpoint-mobile) {
}
}
}
}
#map_sidebar {
margin-top: 0;
.results_wrapper:first-child {
margin-top: 25px;
}
}
}
//#map {
// margin-top: 160px;
// overflow: hidden;
// .close-map {
// position: absolute;
// left: -33px;
// top: -5px;
// width: 28px;
// height: 32px;
// color: white;
// font-family: Impact;
// background: url(../images/arrow.png) no-repeat center center #2c9dd7;
// }
//}
div#map {
opacity: 0;
margin-top: 50px;
width: 315px;
height: 300px;
border: 5px solid #2c9dd7;
margin-left: -8px;
//overflow: visible !important;
-webkit-backface-visibility: hidden;
transition: opacity 0.2s ease;
z-index: -1;
-webkit-transform: translateZ(0);
transform: translateZ(0);
.close-map {
position: absolute;
left: 0;
top: -5px;
width: 28px;
height: 32px;
color: white;
font-family: Impact;
background: url(../../../images/arrow.png) no-repeat center center #2c9dd7;
@media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6/2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
background: url(../../../images/arrow@2x.png) no-repeat center center #2c9dd7;
background-size: 28px 28px;
}
}
@media screen and (min-width: $breakpoint-mobile) {
width: 224px;
height: 207px;
margin-top: 0;
margin-left: 0;
overflow: hidden !important;
border: none;
.close-map {
display: none;
}
}
@media screen and (min-width: 1080px) {
width: 324px;
height: 300px;
margin-left: 0;
overflow: hidden !important;
border: none;
}
}
}