-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMMM-MPKLodz.css
80 lines (68 loc) · 1.28 KB
/
MMM-MPKLodz.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
.MMM-MPKLodz table {
width: 100%;
border-collapse: separate;
}
.MMM-MPKLodz th, .MMM-MPKLodz td {
padding: 5px;
text-align: center;
}
.MMM-MPKLodz th {
color: white;
font-size: 13px;
border-bottom: 1px solid grey;
}
.MMM-MPKLodz td {
font-size: 14px;
}
.MMM-MPKLodz td.time {
color: white;
font-weight: bold;
border-left: 1px solid grey;
}
.MMM-MPKLodz td.route {
color: white;
border-right: 1px solid grey;
}
.stop-name {
font-size: 13px;
text-transform: uppercase;
text-align: right;
margin-right: 10px;
margin-top: 50px;
margin-bottom: 10px;
color: grey;
}
.message {
margin-top: 10px;
margin-left: 10px;
margin-right: 15px;
font-size: 12px;
color: white;
overflow: hidden;
white-space: nowrap;
width: 300px;
position: relative;
display: flex;
}
.message span {
display: inline-block;
padding-left: 100%;
animation: scroll-left 50s linear infinite;
}
@keyframes scroll-left {
0% {
transform: translateX(0%);
}
100% {
transform: translateX(-100%);
}
}
.fas {
color: white;
}
.dark-icon {
color: grey;
}
.wrapper {
text-align: center;
}