-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrecordings.css
68 lines (53 loc) · 1.14 KB
/
recordings.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background-color: aliceblue;
}
.gallery-container {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
align-items: center;
margin: 10px;
}
.video-continer {
margin: 10px;
height: 15rem;
width: 20rem;
/* background-color: green; */
}
.video {
width: 100%;
height: 100%;
object-fit: fill;
cursor: pointer;
box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.video:hover {
border: 1px solid black;
animation-name: record-anm;
animation-duration: 2s;
animation-iteration-count: infinite;
animation-direction: alternate;
}
@keyframes record-anm {
from {
transform: scale(0.9);
}
to {
transform: scale(1.5);
}
}
.h1{
color: red;
cursor: pointer;
text-align: center;
margin-bottom: 100px;
font-size: 42px;
}
.h1:hover {
color: green;
}