-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathecobee-card.css
128 lines (122 loc) · 1.79 KB
/
ecobee-card.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
.clear {
clear: both;
}
.ecobee_card {
background-color: #000000;
color: #ffffff;
height: ;
width: 100%;
display: flex;
}
.ecobee1 {
left: 0px;
font-family: "Gotham", arial;
text-align: center;
margin: .5em;
}
.ecobee_div {
font-size: 1.3em;
}
.ecobee_temperature {
margin: .5em;
padding: .5em .5em .5em .5em;
font-size: 4.2em;
font-weight: 300;
}
.ecobee_humidity {
align-self: center;
line-height: 1em;
font-size: 1.5em;
}
.ecobee_mode {
color: #fff;
padding:1em 1em 1em 1em;
}
.setpoint_auto {
font-size: 12px;
height: 40px;
width: 40px;
}
.setpoint_heatcool {
font-size: 15px;
height: 50px;
width: 50px;
}
.setpoint {
background-color: #000000;
border: 2px solid white;
border-radius: 50%;
display: block;
position: relative;
text-align: center;
font-weight: 800;
}
.operation_cool_color {
color: #56C0EA;
}
.operation_heat_color {
color: orange;
}
.operation_neutral_color {
color: #ffffff;
}
.dot_cool_color {
background-color: #56C0EA;
}
.dot_heat_color {
background-color: orange;
}
.dot_neutral_color {
background-color: #ffffff;
}
.dot {
--dot-height: 10px;
--dot-width: 10px;
border-radius: 50%;
margin: calc((26em/10)/2);
display: block;
}
.dot1 {
height: 3px;
width: 3px;
}
.dot2 {
height: 4px;
width: 4px;
}
.dot3 {
height: 5px;
width: 5px;
}
.dot4 {
height: 6px;
width: 6px;
}
.dot5 {
height: 7px;
width: 7px;
}
.dot6 {
height: 8px;
width: 8px;
}
.grid-container {
display: grid;
width: 95%;
grid-template-columns: auto auto auto;
margin: 10px;
}
.grid-item {
width: 1%;
background-color: #000000;
padding: 2px;
font-size: 30px;
text-align: center;
}
.grid_circles {
grid-row: 1 / span 5;
grid-column: 3;
width: 18%;
align-self: center;
background-color: rgba(0, 0, 0, 0.8);
}