-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
68 lines (56 loc) · 1.51 KB
/
styles.css
File metadata and controls
68 lines (56 loc) · 1.51 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
.coreFeatureBg {
background-size: 100% 100%;
padding-top: 14rem;
padding-bottom: 12rem;
}
.ctaSection {
background-size: 100% 100%;
}
.ctaBg {
background-size: 100% 100%;
}
.companiesList {
animation: moving 10s linear infinite;
}
@keyframes moving {
0% {
top: 0;
}
100% {
top: -50%;
}
}
.featureCard:hover .featureCardIcon {
background-image: linear-gradient(30.55deg,
#6ac7ff 11.05%,
#148aff 90.09%);
box-shadow: 0px 2px 22px rgb(202 202 202 / 25%);
}
.featureCard:hover .featureCardSVG {
filter: drop-shadow(0px 2px 22px rgba(202, 202, 202, 0.25));
stroke-opacity: 0 !important;
}
.featureCard:hover .featureCardBox {
background-image: url("./Images/features-wave.svg");
background-repeat: no-repeat;
background-position: bottom 1rem right;
}
.featureCard2:hover .featureCardBox {
background-image: url("./Images/features-wave.svg");
background-repeat: no-repeat;
background-position: bottom 1rem right;
}
.featureCard2:hover .featureCardSVG {
filter: drop-shadow(0px 2px 24px rgba(0, 0, 0, 0.4));
stroke-opacity: 0 !important;
}
.featureCard2:hover .featureCardIcon {
background-image: linear-gradient(188.57deg,
#2095ff -16.05%,
#6416ff 116.32%);
box-shadow: 0px 2px 24px rgb(0 0 0 / 40%);
transition: all 200ms ease-in-out;
}
.newFeatureCard {
box-shadow: 2px 4px 9px 1px hsla(0, 0%, 0%, 0.05);
}