-
Notifications
You must be signed in to change notification settings - Fork 0
/
contactimg.css
140 lines (117 loc) · 2.22 KB
/
contactimg.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
.imgcontact{
background-color: rgba(255, 255, 255, 0);
width: 747px;
right: 2px;
}
.fb{
animation: fb 4s ease-in-out infinite alternate;
}
@keyframes fb{
from{transform: translateY(30px);}
to{
transform: translateY(-5px);}
}
.ig{
animation: ig 3s ease-in-out infinite alternate;
}
@keyframes ig{
from{transform: translateY(5px);}
to{
transform: translateY(-10px);}
}
.yt{
animation: yt 2s ease-in-out infinite alternate;
}
@keyframes yt{
from{transform: translateY(-5px);}
to{
transform: translateY(30px);}
}
.lin{
animation: lin 1s ease-in-out infinite alternate;
}
@keyframes lin{
from{transform: translateY(-2px);}
to{
transform: translateY(-9px);}
}
.msg{
animation: msg 5s ease-in-out infinite alternate;
}
@keyframes msg{
from{transform: translateY(20px);}
to{
transform: translateY(-20px);}
}
.gh{
animation: gh 2s ease-in-out infinite alternate;
}
@keyframes gh{
from{transform: translatey(7.5px);}
to{
transform: translatey(0px);}
}
.tw{
animation: tw 3s ease-in-out infinite alternate;
}
@keyframes tw{
from{transform: translatey(10px);}
to{
transform: translatey(-10px);}
}
.streec,.rstreec{
animation: streec 2s ease-in-out infinite alternate;
transform-origin: bottom;
transform-box: fill-box;
}
@keyframes streec{
from{
transform: rotateZ(3deg);
/* opacity: 0; */
}
to
{
transform: rotateZ(-3deg);
}
}
.btreec,.rbtreec{
animation: btreec 4s ease-in-out infinite alternate;
transform-origin: bottom;
transform-box: fill-box;
}
@keyframes btreec{
from{
transform: rotateZ(1deg);
/* opacity: 0; */
}
to
{
transform: rotateZ(-3deg);
}
}
.man,.box{
animation: man 4s ease-in-out infinite alternate;
}
@keyframes man{
form{
transform: translateX(0px);
}
to{
transform: translateX(30px);
}
}
.bgc{
animation: bgc 4s ease-in-out infinite alternate;
transform-origin: bottom;
transform-box: fill-box;
}
@keyframes bgc{
from{
transform: rotateZ(0deg);
/* opacity: 0; */
}
to
{
transform: rotateZ(3deg);
}
}