-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
126 lines (98 loc) · 1.32 KB
/
main.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
#map {
width: 100%;
height: 500px;
}
h1 {
text-align: center;
}
button {
font-size: large;
margin-bottom: 3px;
}
#route {
height: 450px;
overflow-x: hidden;
}
div.route-stopover {
padding: 2px;
margin-bottom: 5px;
margin: 0 10px 5px 10px;
border: 1px solid transparent;
background-color: #f5f5f5;
cursor: pointer;
}
div.center {
text-align: center;
}
.row {
margin-left: 12px;
margin-right: 12px;
}
@media only screen and (max-width: 1024px) {
.col-xs-2 {
width: 100%;
}
}
.column-1,
.column-10,
.column-11,
.column-12,
.column-2,
.column-3,
.column-4,
.column-5,
.column-6,
.column-7,
.column-8,
.column-9 {
float: left
}
.column-12 {
width: 100%
}
.column-11 {
width: 91.666%
}
.column-10 {
width: 83.333%
}
.column-9 {
width: 75%
}
.column-8 {
width: 66.666%
}
.column-7 {
width: 58.333%
}
.column-6 {
width: 50%
}
.column-5 {
width: 41.666%
}
.column-4 {
width: 33.333%
}
.column-3 {
width: 25%
}
.column-2 {
width: 16.666%
}
.column-1 {
width: 8.333%
}
::-webkit-scrollbar {
width: 7.5px;
height: 7.5px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: #555555;
}
::-webkit-scrollbar-thumb:hover {
background: #3399CC;
}