80 lines
906 B
CSS
80 lines
906 B
CSS
html, body {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
#wrapper {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
#listCol {
|
|
height: 98%;
|
|
overflow-y: scroll;
|
|
overflow-x: hidden;
|
|
width: 24%;
|
|
float: left;
|
|
}
|
|
|
|
#mapCol {
|
|
width: 50%;
|
|
height: 95%;
|
|
float: left;
|
|
}
|
|
|
|
#formCol {
|
|
width: 24%;
|
|
float: left;
|
|
}
|
|
|
|
.listWrapper {
|
|
display: none;
|
|
}
|
|
|
|
.selected {
|
|
color: blue;
|
|
border: 1px solid #f00;
|
|
}
|
|
|
|
.listItem {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.tabButton {
|
|
cursor: pointer;
|
|
width: 50px;
|
|
border: 1px solid #000;
|
|
float: left;
|
|
text-align: center;
|
|
padding: 4px;
|
|
}
|
|
|
|
.selectedListItem .listItemText {
|
|
color: blue;
|
|
}
|
|
|
|
.selectedStop {
|
|
color: blue !important;
|
|
}
|
|
|
|
.clear {
|
|
clear: both;
|
|
}
|
|
|
|
.has_point {
|
|
color: #222;
|
|
}
|
|
|
|
.no_has_point {
|
|
color: #666;
|
|
}
|
|
|
|
ul {
|
|
list-style-type: none;
|
|
padding-left: 4px;
|
|
}
|
|
|
|
.highlightedStop {
|
|
background-color: #FFFF00;
|
|
}
|
|
|