-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontent.css
More file actions
78 lines (73 loc) · 1.26 KB
/
Copy pathcontent.css
File metadata and controls
78 lines (73 loc) · 1.26 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
66
67
68
69
70
71
72
73
74
75
76
77
78
.content{
display: grid;
grid-template-columns: repeat(2,1fr);
}
.text{
height: calc();
margin-top: 200px;
display: flex;
flex-direction: column;
}
.text h1{
font-size: 52px;
text-transform: capitalize;
line-height: 90%;
}
.text h2{
color: #bfc6de;
margin: 10px 0 32px 0;
}
.play{
height: 50px;
width: 50px;
stroke-width: 1.5;
transform: translate(35% ,0);
background-color: transparent;
}
.end .start{
justify-self: center;
align-self: center;
}
.end{
display: flex;
justify-content: start;
align-content: center;
}
.video{
font-weight: 500;
}
img{
width: 747px ;
height: 644px;
animation:float 8s infinite;
}
.fade{
animation: fadeIn 2s 1;
}
@keyframes float {
0%{
transform: translateY(15px);
}
25%{
transform: translateY(-15px);
}
50%{
transform: translateY(15px);
}
75%{
transform: translateY(-15px);
}
100%{
transform: translateY(15px);
}
}
@keyframes fadeIn {
0%{
opacity: 0;
transform: translateY(100%);
}
100%{
opacity: 1;
transform: translateY(0%);
}
}