-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
54 lines (48 loc) · 902 Bytes
/
style.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
.dark-background {
background-color: #0b0b0b;
}
.bulb-image {
width: 150px;
}
.cat-image {
width: 300px;
}
.switch-board {
width: 294px;
height: 139px;
background-color: #7b8794;
border-radius: 12px;
padding-top: 32px;
padding-bottom: 32px;
padding-left: 16px;
padding-right: 16px;
margin: 16px;
}
.switch-status {
font-family: "Roboto";
font-weight: 500;
font-size: 24px;
color: #ffffff;
margin-bottom: 24px;
}
.on-switch {
font-family: "Roboto";
font-weight: bold;
font-size: 24px;
color: #ffffff;
border-radius: 8px;
width: 99px;
height: 44px;
margin-left: 16px;
background-color: #cbd2d9;
}
.off-switch {
font-family: "Roboto";
font-weight: bold;
font-size: 24px;
color: #ffffff;
border-radius: 8px;
width: 99px;
height: 44px;
background-color: #e12d39;
}