-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyleElements.css
More file actions
71 lines (61 loc) · 878 Bytes
/
styleElements.css
File metadata and controls
71 lines (61 loc) · 878 Bytes
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
html {
height: 100%
}
body {
height: 100%;
margin: 0;
padding: 0
}
#map-canvas {
height: 100%;
width: 100%;
}
#search {
z-index: 10;
position: absolute;
left: 5em;
top: 0px;
line-height: 30px;
height: 30px;
margin: 15px 15px 15px 30px;
}
#address {
font-family: lato;
font-weight: 500;
font-size: 0.8em;
font-size: 1em;
border: 2px solid;
}
#directions-panel {
direction: ltr;
position: relative;
overflow-y: scroll;
white-space: pre-line;
width: 500px;
height: 300px;
display: none;
background: white;
border: 2px solid;
}
#mode {
line-height: 30px;
font-size: 1em;
border: 2px solid;
}
#button {
border: 2px solid;
font-family: 'lato';
font-weight: 400;
font-size: 1em;
padding: 0 30px;
background-color: #4d90fe;
}
@media print {
#map-canvas {
display: none;
}
#directions-panel {
width: auto;
height: auto;
}
}