forked from vincep5/MMM-MyStandings
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathMMM-MyStandings.css
More file actions
108 lines (94 loc) · 1.97 KB
/
MMM-MyStandings.css
File metadata and controls
108 lines (94 loc) · 1.97 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
96
97
98
99
100
101
102
103
104
105
106
107
108
.MMM-MyStandings {
min-width: 300px;
margin-top: 10px;
}
.MMM-MyStandings .standings {
border-collapse: collapse;
font-size: 20px;
}
.MMM-MyStandings .league-separator {
font-size: 15.5px;
line-height: 18px;
text-transform: uppercase;
margin-top: 10px;
border-bottom: solid 1px #222;
text-align: left;
padding: 0;
}
.MMM-MyStandings .league-separator > td > span {
color: #000;
font-weight: bold;
padding-left: 6px;
padding-right: 2px;
background-color: #FFF;
display: inline-block;
vertical-align: top;
position: relative;
white-space: nowrap;
}
/* creates the trigangle after the division name */
.MMM-MyStandings .league-separator > td > span:after {
content: "";
width: 0;
height: 0;
display: inline-block;
vertical-align: top;
border-style: solid;
border-width: 18px 0 0 15px;
border-color: transparent transparent transparent #FFF;
margin-right: -15px;
position: relative;
right: -2px;
}
.MMM-MyStandings .logo {
padding: 0;
padding-left: 5px;
max-width: 30px;
}
.MMM-MyStandings .logo img {
position: relative;
top: 3px;
max-width: 30px;
max-height: 25px;
}
.MMM-MyStandings .nameCell {
text-align: left;
padding: 0 0 0 7px;
}
.MMM-MyStandings .nameCellNoLogo {
text-align: left;
padding: 0 0 0 1px;
}
.MMM-MyStandings .dataCell {
text-align: right;
padding: 0 0 0 7px;
}
.MMM-MyStandings .league-separator .dataCell {
color: #f8dd70;
}
.MMM-MyStandings .bold {
font-weight: bold;
}
.MMM-MyStandings .rank {
display: inline;
color: #000;
background-color: #C0FF00;
font-size: 12px;
font-weight: bold;
line-height: 13px;
height: 13px;
padding: 0 2px;
margin-right: 0px;
margin-bottom: 0;
/*border-bottom: solid 1px #000;
border-left: solid 1px #000;*/
border-radius: 2px;
position: relative;
bottom: 3px;
}
.MMM-MyStandings tr > td:last-of-type {
padding-right: 5px;
}
.MMM-MyStandings .grayscale {
filter: grayscale(100%);
}