-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
90 lines (74 loc) · 1.7 KB
/
main.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
@tailwind base;
@tailwind components;
@tailwind utilities;
.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/features2-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;
}
.coreFeaturesBg {
background-size: 2000px 100%;
padding-top: 20rem;
padding-bottom: 20rem;
}
@media screen and (min-width: 1000px) {
.coreFeaturesBg {
background-size: 100% 100%;
padding-top: 12rem;
padding-bottom: 12rem;
}
}
.compniesList {
animation: 10s infinite linear moveCompany;
}
@keyframes moveCompany {
0% {
top: 0;
}
100% {
top: -50%;
}
}
.ctaBg {
background-size: 200% 100%;
}
.ctaSection {
min-height: 880px;
}
@media screen and (min-width: 1024px) {
.ctaBg {
background-size: 100% 100%;
}
.ctaSection {
min-height: 530px;
}
}
.newFeatureCard {
box-shadow: 2px 4px 9px 1px hsla(0, 0%, 0%, 0.05);
}