-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
86 lines (75 loc) · 1.67 KB
/
index.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
/* Set the size of the div element that contains the map */
#map {
height: 600px; /* The height is 400 pixels */
width: 50%; /* The width is the width of the web page */
/* set boundary for the map */
border: 1px solid black;
margin: 0px;
padding: 0px;
}
/* set the button style */
#button {
background-color: #f0f7f0; /* White */
border: none;
color: rgb(28, 25, 25);
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
/* set the input box style */
#search-area {
background-color: #f0f7f0; /* White */
border: none;
width: 50%;
height: 80px;
color: rgb(28, 25, 25);
padding: 1px 3px;
text-align: left;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
image-rendering: auto;
}
/* set the search button style */
#searchbutton {
background-color: #f0f7f0; /* White */
border: none;
width: 20%;
color: rgb(28, 25, 25);
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 25px;
font: roboto;
margin: 4px 2px;
cursor: pointer;
}
#autocomplete {
background-color: aliceblue;
width: 80%;
height: 40px;
text-align: middle;
}
#start,
#end {
background-color: #fff;
font-family: Roboto;
font-size: 15px;
font-weight: 300;
margin-left: 12px;
padding: 0 11px 0 13px;
text-overflow: ellipsis;
width: 200px;
}
#get-distance {
width: 50%;
height: 40px;
text-align: middle;
background-color: aliceblue;
}