-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylesheet.css
52 lines (41 loc) · 1.03 KB
/
stylesheet.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
body {
background-color: rgb(0, 0, 0);
}
.cont {
text-align: center;
}
#img {
height: 300px;
margin: 150px 0px 29px 0px;
}
#buttons {
margin: 2px 1px 0px 6px;
}
#on {
font-weight: 700;
width: 80px;
height: 27px;
border-radius: 20px;
margin: 0px 35px 0px 0px;
background-color: chartreuse;
font-size: 15px;
cursor:pointer;
}
#on:hover{
background-color: rgb(92, 179, 6);
color: white;
}
#off:hover{
background-color: rgb(180, 0, 0);
color: white;
}
#off {
font-size: 15px;
background-color: red;
width: 80px;
height: 27px;
border-radius: 20px;
margin: 0px 0px 0px 35px;
font-weight: 700;
cursor:pointer;
}