-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage3.css
More file actions
61 lines (53 loc) 路 901 Bytes
/
Copy pathpage3.css
File metadata and controls
61 lines (53 loc) 路 901 Bytes
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
.container {
height: 800px;
display: flex;
align-items: center;
justify-content: center;
}
.tv {
height: 550px;
width: 900px;
border-radius: 30px;
border: 6px solid #05111a;
display: flex;
justify-content: center;
align-items: flex-start;
padding-top: 40px;
}
#tv-inner {
height: 500px;
width: 700px;
border-radius: 50px;
border: 6px solid #05111a;
}
#buttons {
display: flex;
flex-direction: column;
margin-left: 20px;
transition: all 0.3s ease;
}
#buttons:hover {
cursor: pointer;
}
#power {
transition: all 0.3s ease;
margin-top: 30px;
width: 70px;
height: 70px;
border-radius: 100%;
border: 6px solid #05111a;
}
#power:hover {
background: #05111a;
}
#channel {
transition: all 0.3s ease;
width: 70px;
height: 70px;
border-radius: 100%;
border: 6px solid #05111a;
}
#channel:hover {
background: #05111a;
}
/* TV ON-OFF */