-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.css
90 lines (75 loc) · 1.34 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
86
87
88
89
/* Always set the map height explicitly to define the size of the div
* element that contains the map. */
html, body, #main-grid {
height: 100%;
}
/* Optional: Makes the sample page fill the window. */
html, body {
font-family: 'Roboto','sans-serif';
}
#floating-panel {
position: absolute;
top: 10px;
left: 25%;
z-index: 5;
background-color: #fff;
padding: 5px;
border: 1px solid #999;
text-align: center;
line-height: 30px;
padding-left: 10px;
}
#right-panel {
line-height: 30px;
padding-left: 20px;
padding-right: 20px;
}
#map {
height:300px;
}
@media screen and (min-width:48em) {
#map {
height:100%;
}
}
#times {
width:100%;
text-align: center;
border-collapse: separate;
border-spacing:2px;
}
#times .time_slot {
width:9em;
background-color:#ddd;
}
#times .used_time {
width:5em;
text-align:center;
background-color:#eee;
}
#floating-panel, #floating-panel input, #floating-panel button {
font-size:15px;
}
#floating-panel #title {
font-size:18px;
margin-bottom:1em;
background:#eee;
border-radius: 4px;
padding:4px;
}
#noroute {
color:red;
display:none;
}
#floating-panel input {
padding:4px;
margin: 4px;
width:20em;
}
#floating-panel {
background: #fff;
padding: 10px;
border: 1px solid #ccc;
box-shadow: 0 2px 2px rgba(33, 33, 33, 0.4);
display: none;
}