-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
113 lines (95 loc) · 1.65 KB
/
style.css
File metadata and controls
113 lines (95 loc) · 1.65 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
102
103
104
105
106
107
108
109
110
111
112
113
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Colors: #087f5b ;
#343a40; */
body {
font-family: "Inter" sans-serif;
color: #343a40;
line-height: 1;
}
img {
height: 200px;
transform: scale(1.5);
border-radius: 20px;
box-shadow: 0px 10px 24px rgba(0, 0, 0, 0.495);
}
.carousel {
background-color: #087f5b;
width: 800px;
margin: 100px auto;
border-radius: 10px;
display: flex;
justify-content: center;
align-items: center;
gap: 86px;
padding: 32px;
padding-left: 86px;
position: relative;
}
.testimonial-text {
color: #e1fff6;
font-size: 22px;
line-height: 1.5;
font-weight: 500;
margin-bottom: 32px;
}
.testimonial-author {
color: #a3ffe3;
font-size: 16px;
}
.testimonial-job {
color: #a3ffe3;
font-size: 12px;
}
.btn {
background-color: #fff;
border: none;
height: 40px;
width: 40px;
position: absolute;
border-radius: 50%;
box-shadow: 0px 10px 24px rgba(0, 0, 0, 0.39);
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
}
.btn-icon {
height: 24px;
width: 24px;
stroke: #087f5b;
}
.btn--left {
left: 0;
transform: translate(-50%, 10%);
}
.btn--right {
right: 0;
transform: translate(50%, 10%);
}
.dots {
position: absolute;
left: 50%;
bottom: 0;
display: flex;
justify-content: center;
align-items: center;
gap: 12px;
/* border: none; */
transform: translate(-50%, 32px);
}
.dot {
box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.209);
width: 14px;
height: 14px;
border-radius: 50%;
background-color: #fff;
border: 2px solid #087f5b;
cursor: pointer;
}
.dot--fill {
background-color: #087f5b;
}