-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmetro.css
63 lines (53 loc) · 1.03 KB
/
metro.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
#search_metro{
float: left;
height: 800px;
background-color: #fff;
}
.metro-map{
margin: 10px;
position: relative;
}
.metro-widget{
border: 2px solid #000;
border-radius: 10px;
margin-left: 20px;
background-color: #fff;
overflow-y: auto;
height: 100%;
float: left;
}
.metro-station{
border: 1px solid #fff;
width: 10px;
height: 10px;
border-radius: 5px;
padding: 0;
margin: 0;
}
.metro-station:hover{
width: 14px;
height: 14px;
margin-left: -2px;
margin-top: -2px;
}
.metro-station.selected{
border: 2px solid #000;
margin-left: -1px;
margin-top: -1px;
width: 12px;
height: 12px;
background-color: #FF00C2;
}
#metro_search_select{
border:1px solid #666;
-moz-box-shadow:0 0 90px 5px #000;
-webkit-box-shadow: 0 0 90px #000;
z-index:10000;
background-color:#333;
border-radius: 15px;
text-align: center;
padding: 10px;
max-width: 1000px;
color: white;
font-size: 1.3em;
}