-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMMM-Homematic.css
134 lines (134 loc) · 2.38 KB
/
MMM-Homematic.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
122
123
124
125
126
127
128
129
130
131
132
133
134
/* colors */
.MMM-Homematic .red {
color: red;
}
.MMM-Homematic .green {
color: green;
}
.MMM-Homematic .blue {
color: blue;
}
.MMM-Homematic .yellow {
color: yellow;
}
.MMM-Homematic .white {
color: white;
}
/* icons */
.MMM-Homematic .icon {
display: inline-block;
background-repeat: no-repeat;
background-size: cover;
}
.MMM-Homematic .icon.fa {
display: inline;
background-color: transparent;
}
/* icons - color */
.MMM-Homematic .icon-red {
background-color: red;
color: red;
}
.MMM-Homematic .icon-green {
background-color: green;
color: green;
}
.MMM-Homematic .icon-blue {
background-color: blue;
color: blue;
}
.MMM-Homematic .icon-yellow {
background-color: yellow;
color: yellow;
}
.MMM-Homematic .icon-white {
background-color: white;
color: white;
}
/* icons - position */
.MMM-Homematic .icon-left {
margin-right: 5px;
}
.MMM-Homematic .icon-right {
margin-left: 5px;
}
/* icons - size */
.MMM-Homematic .icon-x-small {
width: 24px;
height: 24px;
font-size: 24px;
}
.MMM-Homematic .icon-small {
width: 32px;
height: 32px;
font-size: 32px;
}
.MMM-Homematic .icon-medium {
width: 48px;
height: 48px;
font-size: 48px;
}
.MMM-Homematic .icon-large {
width: 64px;
height: 64px;
font-size: 64px;
}
.MMM-Homematic .icon-x-large {
width: 128px;
height: 128px;
font-size: 128px;
}
/* text position for icon sizes */
.MMM-Homematic .text-with-icon-x-small {
padding-top: 0px;
}
.MMM-Homematic .text-with-icon-small {
padding-top: 3px;
}
.MMM-Homematic .text-with-icon-medium {
padding-top: 12px;
}
.MMM-Homematic .text-with-icon-large {
padding-top: 20px;
}
.MMM-Homematic .text-with-icon-x-large {
padding-top: 52px;
}
/* style - lines */
.MMM-Homematic .text-lines {
display: inline-block;
vertical-align: top;
}
/* style - single_line */
.MMM-Homematic .single-line {
display: inline-block;
padding-right: 5px;
padding-left: 5px;
}
/* style - table */
.MMM-Homematic .table {
display: table;
}
.MMM-Homematic .table-row {
display: table-row;
}
.MMM-Homematic .table-cell {
display: table-cell;
padding: 0 5px;
}
.MMM-Homematic .table-columns .text-with-icon {
padding-top: 0px;
}
.MMM-Homematic .table-row:not(:last-child) > div {
padding-bottom: 3px;
}
/* general */
.MMM-Homematic .hide {
display: none !important;
}
.MMM-Homematic .centered {
text-align: center;
}
.MMM-Homematic .align-top {
vertical-align: top;
}