Improved www.ttss.krakow.pl
Jacek Kowalski
2017-05-14 4d882e6d16036c99055cfb8df0bf8c25bcbb8d8c
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
html, body, #map, #header {
    margin: 0;
    padding: 0;
    font: 14px sans-serif;
    overflow: hidden;
}
 
#header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2em;
    background: #f8f8f8;
    border-bottom: 1px solid #999;
}
#header ul {
    display: table;
    padding: 0;
    margin: 0;
    width: 100%;
}
#header ul li {
    display: table-cell;
    list-style: none;
    white-space: nowrap;
    vertical-align: top;
}
#header ul li:last-child {
    width: 100%;
    white-space: inherit;
    text-align: right;
}
#header ul li > * {
    line-height: 1em;
    display: inline-block;
    padding: 0.5em;
}
#alert {
    margin-left: 5px;
    
    transition: background-color .4s;
}
.error {
    background-color: red;
    color: white;
    font-weight: bold;
}
 
#map {
    position: absolute;
    top: 29px;
    left: 0;
    right: 0;
    bottom: 0;
}
#map .ol-attribution {
    left: 0;
    right: auto;
    text-align: left;
}
 
#panel {
    color: black;
    background: white;
    padding: 5px;
    border-left: 1px solid #999;
    font-size: 14px;
    
    position: absolute;
    width: 350px;
    right: -365px;
    top: 29px;
    bottom: 0;
    
    transition: right .4s, width .4s;
    
    opacity: .85;
    
    overflow-y: auto;
}
 
#panel.show {
    right: 0;
}
 
@media (max-width: 600px) {
    #panel {
        width: 80%;
        right: -100%;
    }
    
    #panel.show {
        right: 0%;
    }
}
 
#panel .type {
    padding-bottom: 0;
    color: #444;
    font-size: 80%;
}
#panel p {
    margin: 0;
    padding: 5px;
}
#panel .name {
    font-weight: bold;
}
#panel .vehicleInfo {
    font-size: 21px;
    margin: -4px 0 -5px;
}
#panel table {
    margin-top: 3px;
    border-top: 1px solid gray;
    width: 100%;
    border-collapse: collapse;
}
#panel table th {
    text-align: left;
    border-bottom: 1px solid #999;
    padding-top: 5px;
}
#panel table td {
    vertical-align: top;
}
#panel .active {
    background: #f5f5f5;
    color: gray;
}
#panel .success {
    background: #dff0d8;
}
#panel .warning {
    background: #fcf8e3;
}
#panel .danger {
    background: #f2dede;
}
#panel table .vehicleInfo {
    float: right;
}
 
#title {
    top: .5em;
    left: .5em;
    padding: 2px .5em;
    font-weight: bold;
    background-color: rgba(255,255,255,.6);
}
 
.close {
    float: right;
    cursor: pointer;
    font-size: 20px;
    margin: 0;
    padding: 3px;
}
 
a {
    color: #337ab7;
    text-decoration: none;
    cursor: pointer;
}
a:hover {
    text-decoration: underline;
}
 
.small {
    font-size: 80%;
}