-
Notifications
You must be signed in to change notification settings - Fork 12
/
index.css
101 lines (98 loc) · 2.4 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
90
91
92
93
94
95
96
97
98
99
100
101
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;
}
h2#times-stop {
margin-top: 0;
}
.vehicleInfo {
font-size: 21px;
}
#times-table .vehicleInfo {
float: right;
margin: -5px 0;
}
#route-vehicle .vehicleInfo {
margin-right: .5em;
}
#vehicle-data {
float: right;
}
.bigger {
font-size: 21px;
}
.vehicleData {
display: none;
}
/* Change navbar behavior for low media width */
.navbar-nav {
float: left;
margin: 0;
}
.nav > li {
float: left;
}
.navbar-nav > li > a {
padding-top: 15px;
padding-bottom: 15px;
}
.navbar-left {
float: left !important;
}
.navbar-form {
width: auto;
padding-top: 0;
padding-bottom: 0;
margin-right: 0;
margin-left: 0;
border: 0;
-webkit-box-shadow: none;
box-shadow: none;
}
/* Loading animation */
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: -moz-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: -ms-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;
}