-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
47 lines (37 loc) · 1.16 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
@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: 100% 100%;
padding-top: 5rem;
padding-bottom: 10rem;
}