forked from Shubham56-droid/Web-Components-Projects
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
103 lines (88 loc) · 1.86 KB
/
styles.css
File metadata and controls
103 lines (88 loc) · 1.86 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
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
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Montserrat', sens-serif;
}
section {
position: relative;
width: 100%;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background: #2196f3;
overflow: hidden;
}
.swiper-container {
width: 100%;
padding-top: 50px;
padding-bottom: 50px;
}
.swiper-slide {
background-position: center;
background-size: cover;
width: 320px;
background: #fff;
box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
filter: blur(4px);
background: #d1ebff;
border-radius: 10px;
}
.swiper-slide-active {
filter: blur(0px);
background: #fff
}
.testimonialBox {
position: relative;
/* height: 38rem; */
width: 100%;
padding: 40px;
padding-top: 90px;
color: #999;
}
.testimonialBox .quote {
height: 3rem;
position: absolute;
top: 20px;
right: auto;
opacity: 0.2;
}
.testimonialBox .details {
display: flex;
align-items: center;
margin-top: 20px;
}
.testimonialBox .details .imgBx {
position: relative;
width: 60px;
height: 60px;
border-radius: 50%;
overflow: hidden;
margin-right: 10px;
}
.testimonialBox .details .imgBx img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
.testimonialBox .details h3{
font-size: 16px;
font-weight: 400;
letter-spacing: 1px;
color: #2196f3;
line-height: 1.1em;
}
.testimonialBox .details h3 span {
font-size: 12px;
color: #666;
}
.swiper-container-3d .swiper-slide-shadow-left
.swiper-container-3d .swiper-slide-shadow-right
{
background-image: none;
}