-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path02-carousel.html
More file actions
210 lines (179 loc) · 5.01 KB
/
Copy path02-carousel.html
File metadata and controls
210 lines (179 loc) · 5.01 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Adding font: Inter (sans-serif) -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap"
rel="stylesheet"
/>
<title>Carousel Component</title>
<style>
/*
SPACING SYSTEM (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 /
48 / 64 / 80 / 96 / 128
FONT SIZE SYSTEM (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 /
30 / 36 / 44 / 52 / 62 / 74 / 86 /
98
MAIN COLOR: #087f5b
#099268 - a tint lighter
GREY COLOR: #343a40
#495057 - footer
*/
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Inter", sans-serif;
color: #343a40;
line-height: 1;
}
.carousel {
background-color: #087f5b;
width: 800px;
margin: 100px auto;
color: #fff;
border-radius: 8px;
/* padding: 32px;
padding-left: 98px;
padding-right: 48px; */
padding: 32px 48px 32px 98px; /*top right bottom left*/
display: flex;
align-items: center;
gap: 96px;
position: relative;
}
img {
height: 200px;
border-radius: 8px;
transform: scale(1.65);
box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}
.testimonial-text {
font-size: 18px;
font-weight: 500;
line-height: 1.5;
margin-bottom: 32px;
color: #e6fcf5;
}
.testimonial-author {
font-size: 14px;
margin-bottom: 4px;
color: #c3fae8;
}
.testimonial-job {
font-size: 12px;
color: #c3fae8;
}
.btn--left {
/* In relation to the PARENT element */
left: 0;
top: 50%;
/* In relation to the ELEMENT ITSELF */
transform: translate(-50%, -50%);
}
.btn--right {
right: 0;
top: 50%;
transform: translate(50%, -50%);
}
.btn {
background-color: #fff;
width: 40px;
height: 40px;
border: none;
border-radius: 50%;
box-shadow: 0 0 24px rgba(0, 0, 0, 0.2);
position: absolute;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
}
.btn-icon {
width: 24px;
height: 24px;
stroke: #087f5b;
}
.dots {
position: absolute;
left: 50%;
bottom: 0;
transform: translate(-50%, 48px);
display: flex;
gap: 12px;
}
.dot {
height: 12px;
width: 12px;
background-color: #fff;
border: 2px solid #087f5b;
border-radius: 50%;
cursor: pointer;
}
.dot--fill {
background-color: #087f5b;
}
</style>
</head>
<body>
<div class="carousel">
<img src="maria.jpg" alt="Maria de Almeida" />
<blockquote class="testimonial">
<p class="testimonial-text">
"Lorem ipsum dolor sit amet consectetur adipisicing elit. Dicta quae
minima possimus veniam, magni atque accusamus accusantium reiciendis
quaerat, illum porro aspernatur ipsam cum amet non ab tempore?"
</p>
<p class="testimonial-author">Maria de Almeida</p>
<p class="testimonial-job">Senior Product Manager at EDP Commercial</p>
</blockquote>
<button class="btn btn--left">
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="currentColor"
class="btn-icon"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M15.75 19.5L8.25 12l7.5-7.5"
/>
</svg>
</button>
<button class="btn btn--right">
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="currentColor"
class="btn-icon"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M8.25 4.5l7.5 7.5-7.5 7.5"
/>
</svg>
</button>
<div class="dots">
<button class="dot dot--fill"> </button>
<button class="dot"> </button>
<button class="dot"> </button>
<button class="dot"> </button>
</div>
</div>
</body>
</html>