-
Notifications
You must be signed in to change notification settings - Fork 0
/
extendny.css
133 lines (118 loc) · 1.96 KB
/
extendny.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
* {
margin: 0px;
padding: 0px;
}
body {
height: 100%;
font-family: Helvetica, sans-serif;
}
a {
text-decoration: inherit;
color: inherit;
}
a:hover {
text-decoration: underline;
}
#header {
position: absolute;
top: 0px;
left: 0px;
right: 0px;
height: 20px; /* 20 + 2*5 + 1 = 31 */
padding: 5px 50px;
border-bottom: 1px solid #444;
z-index: 10;
background: #888;
box-shadow: 0px 2px 0px rgba(0, 0, 0, 0.4);
color: white;
}
.left {
float: left;
}
.right {
float: right;
}
#description {
font-weight: bold;
text-shadow: 0px 1px 0px black;
}
#description::after {
content: "The Manhattan Grid extended to every point on Earth.";
}
#by {
font-size: 12px;
padding-top: 4px;
}
#map {
position: absolute;
width: 100%;
top: 31px;
bottom: 0px;
}
#gmap {
position: absolute;
width: 100%;
height: 100%;
}
.sign {
position: absolute;
pointer-events: none;
color: #dae3e6;
background: #2c7669;
padding: 5px;
opacity: 0.8;
border-radius: 5px;
border: 1px solid #dae3e6;
box-shadow: 1px 1px 1px black;
-moz-transform-origin: 0px 0px;
-webkit-transform-origin: 0px 0px;
}
#user,
#mouse {
display: none;
}
#user .sign {
border: 2px solid #ff7e73; /*#3B99FF;*/
}
#address-control {
padding: 5px;
}
#location-control {
padding: 5px;
}
#location {
display: none;
position: relative;
cursor: pointer;
width: 22px;
height: 22px;
background-image: url("my_location.png");
}
#location.inactive {
background-position: 0px 0px;
}
#location.loading {
background-position: 0px -22px;
}
#location.active {
background-position: 0px -44px;
}
#location .spinner {
display: none;
background-image: url("my_location_button_spinner.gif");
position: absolute;
left: 6px;
top: 4px;
width: 10px;
height: 10px;
}
@media screen and (max-width: 830px) {
#description::after {
content: "🗽 extended to every point on 🌍";
}
}
@media screen and (max-width: 480px) {
#header {
padding: 5px;
}
}