-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
65 lines (60 loc) · 1.3 KB
/
Copy pathstyle.css
File metadata and controls
65 lines (60 loc) · 1.3 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
.card{
margin-top: 80px;
margin-left: 300px;
max-width: 45rem;
background-color: black;
justify-content: center;
align-items: center;
}
.container {
position: relative;
width: max-content;
height: max-content;
justify-content: center;
align-items: center;
}
.container #video {
width: 717px;
height: 400px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
background-color: black;
}
#video:hover{
background-color: rgb(62, 60, 60);
}
.play-button {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 100px;
height: 100px;
background-color: rgba(0, 0, 0, 0.5);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
}
.play-button-icon {
color: #FFF;
font-size: 48px;
}
.pause-button {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 100px;
height: 100px;
background-color: rgba(0, 0, 0, 0.5);
border-radius: 50%;
align-items: center;
justify-content: center;
display: none;
cursor: pointer;
}
.pause-button-icon {
color: #FFF;
font-size: 48px;
}