-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
72 lines (60 loc) · 1.03 KB
/
styles.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
69
70
71
72
.likedin_v1 {
height: 100%;
width: 100%;
display: block;
position: absolute;
z-index: 1000;
top: 0;
left: 0;
display: grid;
place-items: center;
cursor: pointer;
}
.likedin_v1 svg {
width: 100px !important;
height: 100px !important;
opacity: 0;
}
.likedin__liked svg {
opacity: 0;
animation: icon_animated 1s 2 alternate ease-in-out;
}
@keyframes icon_animated {
0% {
transform: scale(0);
opacity: 1;
}
25% {
transform: scale(1.2);
opacity: 1;
}
50% {
transform: scale(0.8);
opacity: 1;
}
75% {
transform: scale(1);
opacity: 1;
}
100% {
transform: scale(1);
opacity: 1;
}
}
.likedin_v1 svg>* {
fill: #FFFFFF;
}
.likedin_v1__video {
height: calc(100% - 50px);
}
.likedin_v1__video svg {
margin-top: 50px;
}
.likedin_v1__iframe {
margin: 40px;
height: calc(100% - 80px);
width: calc(100% - 80px);
}
header {
z-index: 9999 !important;
}