-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMMM-RNV.css
More file actions
95 lines (77 loc) · 1.44 KB
/
MMM-RNV.css
File metadata and controls
95 lines (77 loc) · 1.44 KB
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
/* Magic Mirror
* Module: MMM-RNV
*
* By jupadin
* MIT Licensed.
*/
.MMM-RNV {
font-size: 16px;
}
.MMM-RNV .table {
line-height: 1.25;
}
.MMM-RNV .tableHeader {
text-align: center;
}
.MMM-RNV.header.line {
text-align: center;
}
.MMM-RNV .direction {
text-align: center;
}
.MMM-RNV .platform {
text-align: right;
}
.MMM-RNV .departure {
text-align: left;
}
.MMM-RNV .delay {
padding-left: 10px;
padding-right: 10px;
text-align: left;
}
/* .MMM-RNV .line {
width: 20px;
height: 20px;
padding: 1px;
} */
.MMM-RNV .content {
text-align: center;
padding: 3px;
color: #FFFFFF;
/* background-clip: padding-box; */
}
.MMM-RNV .icon {
text-align: center;
padding-right: 10px;
padding-left: 10px;
}
.MMM-RNV .platform {
text-align: right;
}
.MMM-RNV .footer {
text-align: right;
font-size: small;
border-top: 1px solid var(--color-text-dimmed);
}
.MMM-RNV .delay.late {
color: #FF0000;
}
.MMM-RNV .delay.early {
color: #00FF00;
}
.MMM-RNV td {
padding: 0 6px;
}
.MMM-RNV .status-dot {
display: inline-block;
width: 8px;
height: 8px;
margin-right: 6px;
border-radius: 50%;
transition: background-color 0.6s ease;
}
/* Punktfarben */
.MMM-RNV .footer .status-dot.fresh { background-color: green; }
.MMM-RNV .footer .status-dot.aging { background-color: #FFA500; }
.MMM-RNV .footer .status-dot.stale { background-color: #FF4444; }