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
| tr.active {
| color: gray;
| }
| .form-round-left {
| border-top-left-radius: 4px !important;
| border-bottom-left-radius: 4px !important;
| border-right: 0;
| }
| .navbar-text {
| margin-right: 15px;
| margin-left: 15px;
| }
| .input-group-btn:first-child {
| width: 50%;
| }
| @keyframes blink {
| 50% { color: transparent; }
| }
| .status-boarding {
| animation: blink 1s linear infinite;
| }
| .status-delayed {
| font-weight: bold;
| }
| .bg-active {
| background-color: #eee;
| }
| .bg-default {
| border: 1px solid #eee;
| }
| .label.bg-success, .label.bg-warning, .label.bg-danger, .label.bg-active, .label.bg-default {
| color: black;
| font-weight: normal;
| font-size: inherit;
| }
|
| .vehicleInfo {
| float: right;
| margin: -5px 0;
| font-size: 21px;
| }
| .bigger {
| font-size: 21px;
| }
|
| nav.loading {
| background-image: -webkit-linear-gradient(45deg,rgba(0,0,0,.1) 25%,transparent 25%,transparent 50%,rgba(0,0,0,.1) 50%,rgba(0,0,0,.1) 75%,transparent 75%,transparent);
| background-image: -o-linear-gradient(45deg,rgba(0,0,0,.1) 25%,transparent 25%,transparent 50%,rgba(0,0,0,.1) 50%,rgba(0,0,0,.1) 75%,transparent 75%,transparent);
| background-image: linear-gradient(45deg,rgba(0,0,0,.1) 25%,transparent 25%,transparent 50%,rgba(0,0,0,.1) 50%,rgba(0,0,0,.1) 75%,transparent 75%,transparent);
| -webkit-background-size: 40px 40px;
| background-size: 40px 40px;
| -webkit-animation: progress-bar-stripes 2s linear infinite;
| -o-animation: progress-bar-stripes 2s linear infinite;
| animation: progress-bar-stripes 2s linear infinite;
| }
| nav.loading * {
| color: black !important;
| }
|
|