-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
44 lines (40 loc) · 804 Bytes
/
style.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
.wave:hover::after{
background-image: url(./images/wave.svg);
content: "";
background-size: cover;
background-position: center;
position: absolute;
height: 3.5rem;
width: 5rem;
bottom: 1rem;
right: 0px;
}
.wave1:hover{
background-image: url(./images/wave.svg);
content: "";
background-size: cover;
-webkit-background-position: center;
background-position: center;
position: relative;
height: 3.5rem;
width: 5rem;
bottom: 1rem;
right: 0px;
/* z-index: -1; */
}
.corefeaturesection{
background-size: 100% 100%;
padding-top: 12rem;
padding-bottom: 12rem;
}
.companiesList {
animation: moving 5s linear infinite;
}
@keyframes moving {
0% {
top: 0;
}
100% {
top: -50%;
}
}