-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathroadradius.css
83 lines (72 loc) · 1.5 KB
/
roadradius.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
* {
margin: 0;
}
html, body {
height: 100%;
}
body {
background: #fcfcfc;
color: #555;
font-family: 'Actor', sans-serif;
text-align:center;
}
#wrapper {
text-align: center;
/*position: absolute;*/
left: 0px;
width: 100%;
min-height: 100%;
height: auto !important;
margin: 0 auto -32px; /* the bottom margin is the negative value of the footer's height */
}
#blank {
height: 50px;
}
#content {
width: 100%;
height: 600px;
margin-left: auto;
margin-right: auto;
color: #555;
margin-left: auto;
margin-right: auto;
text-align: center;
}
#input {
width: 40%;
margin-bottom: 50px;
margin-left:auto;
margin-right:auto;
text-align:center;
border: 1px solid #ccc;
-moz-box-shadow: 0px 1px 5px #888;
-webkit-box-shadow: 0px 1px 5px #888;
box-shadow: 0px 1px 5px #888;
-moz-border-radius: 3px;
border-radius: 3px;
}
#distance-input {
width: 2em;
margin-left: 10px;
margin-right: 20px;
margin-top: 10px;
margin-bottom: 10px;
padding: 10px;
padding-top: 5px;
padding-bottom: 5px;
border: 1px solid #efefef;
font-size: 1em;
color: #555;
font-weight: bold;
vertical-align: middle;
text-align: center;
}
#gmaps-canvas {
width: 100%;
height: 85%;
-moz-box-shadow: 0px 1px 15px #888;
-webkit-box-shadow: 0px 1px 15px #888;
box-shadow: 0px 1px 15px #888;
-moz-border-radius: 3px;
border-radius: 3px;
}