-
Notifications
You must be signed in to change notification settings - Fork 1
/
rvv.css
76 lines (60 loc) · 1.4 KB
/
rvv.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
.MMM-RVV #divReloadWrapper {
margin-bottom: 10px;
/* Use here the same value as 'width' property of child element #divReload */
margin-right: 50px;
}
.MMM-RVV #divReload {
/* Adjust this value to modify the progress bar. Take care on the wrapper margin! */
width: 50px;
/* Adjust this value to modify the progress bar */
height: 5px;
position: relative;
animation: mymove infinite;
/* This is the default duration. The 'real' duration is set on runtime */
animation-duration: 30s;
}
@keyframes mymove {
/* Runs from left to right of the #divReloadWrapper */
from {left: 0px;}
to {left: 100%;}
}
.MMM-RVV .rvvTripRow {
}
.MMM-RVV header{
margin-bottom: 0px;
}
.MMM-RVV .hRoute, .hDestination, .hDetail, .hDeparture {
color: white;
padding-right: 10px;
}
.MMM-RVV .hDeparture {
padding-right: 0px;
}
.MMM-RVV .wrapLine {
word-wrap: break-word;
}
.MMM-RVV .hDeparture {
text-align: right;
}
.MMM-RVV .rvvTripColRoute, .rvvTripColDestination, .rvvTripColDetails, .rvvTripColDeparture, .rvvTripColDelay {
padding-right: 10px;
}
.MMM-RVV .rvvTripColDestination{
max-width: 400px;
}
.MMM-RVV .rvvTripColDeparture{
text-align: right;
padding-right: 0px;
}
.MMM-RVV .rvvTripColDelay {
padding-right: 0px;
}
.MMM-RVV .rvvTripColDeparture, .rvvTripColRoute{
color: white;
}
.MMM-RVV .rvvTripHasDelay{
color: red;
}
.MMM-RVV .rvvTripHasNoDelay{
color: rgb(14, 246, 14);
}