forked from fewieden/MMM-soccer
-
Notifications
You must be signed in to change notification settings - Fork 4
/
MMM-soccer.css
121 lines (97 loc) · 1.83 KB
/
MMM-soccer.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
.MMM-soccer .soccerWrapper {
#display: flex;
}
.MMM-soccer .icon {
width: 24px;
height: 24px;
}
.MMM-soccer .big-icon {
width: 48px;
}
.MMM-soccer .no-color {
-webkit-filter: grayscale(100%);
}
.MMM-soccer .name {
text-align: left;
}
.MMM-soccer .matchDay {
text-align: center;
margin-bottom: 10px;
}
.MMM-soccer .games {
margin-bottom: 20px;
}
.MMM-soccer .games .status {
padding: 5px;
border: 4px solid black;
background-color: #99aacc;
color: black;
border-radius: 5px;
text-align: center;
font-size: 100%;
width: 55px;
min-width: 55px;
}
.MMM-soccer .games .status.TIMED{
font-size: 90%;
}
.MMM-soccer .games .IN_PLAY {
color: #fdfd96;
}
.MMM-soccer .games .status.IN_PLAY {
background-color: #fdfd96;
color: black;
}
.MMM-soccer .logo {
max-width: 25px;
width: 25px;
padding: 0px 8px;
vertical-align: middle;
}
.MMM-soccer .centered-row {
vertical-align: middle;
}
.MMM-soccer .centered {
text-align: center;
}
.MMM-soccer .focused {
font-weight: bold;
}
.MMM-soccer .name .IN_PLAY {
color: yellow;
}
.MMM-soccer .table {
margin: 10px 0px;
}
.MMM-soccer-blur {
-webkit-filter: blur(2px) brightness(50%);
}
.MMM-soccer .modal {
position: fixed;
text-align: left;
left: 50%;
top: 50%;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.MMM-soccer .modal ul {
margin: 0;
}
.MMM-soccer .homeTeam {
text-align: right;
}
.MMM-soccer .matchName {
max-width: 50%;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.MMM-soccer .matchName.winner {
font-weight: bold;
#text-decoration: underline;
}
.MMM-soccer svg {
background-color: #000;
}