-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsmartHouse.css
More file actions
90 lines (77 loc) · 1.21 KB
/
smartHouse.css
File metadata and controls
90 lines (77 loc) · 1.21 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
.smartHouse {
/* border: 1px solid black;*/
/*float: left;*/
display: inline-block;
padding: 5px;
margin: 5px;
}
#newdevice {
float: left;
border: none;
box-sizing:border-box;
display: inline-block;
padding: 5px;
margin: 5px;
}
.bulb {
background-color: #eceff1;
border-top: 10px solid white;
/*float: left;
height: 50px;*/
}
.gate {
background-color: #eceff1;
border-top: 10px solid white;
/*float: left;
height: 50px;*/
}
.air {
background-color: #eceff1;
border-top: 10px solid white;
/*float: left;
height: 50px;*/
}
#lamps {
border: 1px solid black;
padding: 5px;
margin-bottom: 10px;
}
#gates {
border: 1px solid black;
padding: 5px;
margin-bottom: 10px;
}
#conditions {
border: 1px solid black;
padding: 5px;
margin-bottom: 10px;
}
.delbtn {
background-color: #f44336;
color: white;
font-weight: bold;
border: 1px solid white;
}
.statebtn{
background-color: #008CBA;
color: white;
border: 1px solid white;
}
.chpropbtn{
background-color: #4CAF50;
color: white;
font-weight: bold;
border: 1px solid white;
}
.chmodebtn{
background-color: #555555;
color: white;
font-weight: bold;
border: 1px solid white;
}
.on {
background-color: lime;
}
.off {
background-color: pink;
}