-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
88 lines (74 loc) · 1.89 KB
/
styles.css
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
html, body {
width: 100%;
height: 100%;
}
body {
margin: 0;
padding: 0;
background: #000;
}
// canvas {
// position: absolute;
// left: 50%;
// top: 50%;
// transform: translate(-50%, -50%);
// -webkit-transform: translate(-50%, -50%);
// -moz-transform: translate(-50%, -50%);
// -ms-transform: translate(-50%, -50%);
// cursor: pointer;
// }
#map-container {
width: 100%;
height: 100%;
background: #000 !important;
}
.gm-style > div {
cursor: none !important;
}
/* google logo */
#map-container.flipped .gm-style > div:nth-child(2){
transform: rotate(180deg) !important;
-webkit-transform: rotate(180deg) !important;
-moz-transform: rotate(180deg) !important;
-ms-transform: rotate(180deg) !important;
top: 0px !important;
bottom: auto !important;
right: 0px !important;
left: auto !important;
}
// #map-container.flipped .gm-style > div:nth-child(2) > a > div,
// #map-container.flipped .gm-style > div:nth-child(2) img {
// width: 132px !important;
// height: 52px !important;
// }
#map-container.flipped .gm-style-cc, #map-container.flipped .gmnoprint {
transform: rotate(180deg) !important;
-webkit-transform: rotate(180deg) !important;
-moz-transform: rotate(180deg) !important;
-ms-transform: rotate(180deg) !important;
top: 0px !important;
bottom: auto !important;
left: 0px !important;
right: auto !important;
}
/* google logo */
#map-container.hideLogos .gm-style > div:nth-child(2){
display: none !important;
}
// #map-container.flipped .gm-style > div:nth-child(2) > a > div,
// #map-container.flipped .gm-style > div:nth-child(2) img {
// width: 132px !important;
// height: 52px !important;
// }
#map-container.hideLogos .gm-style-cc, #map-container.hideLogos .gmnoprint {
display: none !important;
}
.dg.main.hidden {
visibility: hidden;
}
#cursor {
z-index: 100000;
position: absolute;
left: 50%;
top: 50%;
}