-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
302 lines (240 loc) · 7.43 KB
/
index.html
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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
<!DOCTYPE HTML>
<html lang="de">
<head>
<meta charset="utf-8">
<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=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<title>Flexbox Übung © Adnan</title>
<style>
body{
margin:32px 50px;
padding:0;
background :#f8f9fa; /* sehr helles grau */
}
main{
padding:16px;
background: white;
box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}
/* hierhin getan weil die eigenschaften von button ansonsten nicht verändert werden */
*{
font-family:"Montserrat",sans-serif;
color:#2b2d42; /* fast schwarz */
}
button{
padding:10px 50px;
background:#e7c6ff;
border-radius:3px;
border:1px solid #c8b6ff;
cursor:pointer;
}
.products {
background:#bde0fe;
box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
/*
main
*/
display: flex;
flex-flow: row wrap;
gap: 16px;
padding: 16px;
}
.product{
box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
border: 2px solid #023047;
padding: 16px;
border-radius: 3px;
/*child*/
flex-basis: 300px;
flex-grow: 1;
}
.product .product-image{
width:100%;
height: 200px;
object-fit: cover;
box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}
.product-title{
margin-bottom: 0;
}
.mini-desc {
font-size: small;
}
.price{
margin-top: 10px;
margin-bottom: 10px;
}
.highlight-price{
color:#e76f51;
}
.cart-box{
display: flex;
flex-wrap: nowrap;
flex-direction: row;
justify-content: center;
align-items: center;
gap: 10px;
margin-inline: auto;
}
.increment,.decrement{
padding: 0;
height: 32px;
width: 32px;
border-radius: 50%;
}
.add-to-cart{
display: flex;
flex-wrap: nowrap;
align-items: center;
gap: 10px;
}
</style>
</head>
<body>
<main>
<!--Welcome-->
<h1>Flexbox Übung</h1>
<hr>
<p>
Sapien in lectus iaculis diam non dictum aptent, eleifend semper eros urna libero proin blandit quis, nunc et porta vestibulum velit eget. Fringilla conubia magnis maecenas suscipit vestibulum lacus sapien aliquam accumsan fermentum condimentum tincidunt, primis curae habitant ornare scelerisque iaculis quis pretium augue habitasse diam sodales, viverra praesent hendrerit blandit ligula euismod imperdiet rhoncus lectus litora posuere. Taciti himenaeos sodales quisque fusce sagittis arcu dis hac, cubilia nec metus commodo aliquam ante venenatis vestibulum montes, fringilla turpis platea proin habitant justo urna.
</p>
<hr>
<h2>Produkte</h2>
<div class="products">
<!--Produkt-->
<div class="product">
<img class="product-image" src="img/product-image.jpg" alt="Produktbild">
<h4 class="product-title">
Produkttitel
</h4>
<span class="mini-desc">Lorem ipsum dolor sit amet, consectetur adipiscing elit…</span>
<div class="price">
<span class="old-price">
<del>79,90€</del>
</span>
<span class="highlight-price">
59,90€
</span>
inkl. MwSt.
</div>
<div class="cart-box">
<button class="decrement">
-
</button>
<div class="add-to-cart">
<span class="counter">
3
</span>
<button >
In den Warenkorb
</button>
</div>
<button class="increment">
+
</button>
</div>
</div>
<!--Produkt-->
<div class="product">
<img class="product-image" src="img/product-image.jpg" alt="Produktbild">
<h4 class="product-title">
Produkttitel
</h4>
<span class="mini-desc">Lorem ipsum dolor sit amet, consectetur adipiscing elit…</span>
<div class="price">
<span class="old-price">
<del>79,90€</del>
</span>
<span class="highlight-price">
59,90€
</span>
inkl. MwSt.
</div>
<div class="cart-box">
<button class="decrement">
-
</button>
<div class="add-to-cart">
<span class="counter">
3
</span>
<button >
In den Warenkorb
</button>
</div>
<button class="increment">
+
</button>
</div>
</div>
<!--Produkt-->
<div class="product">
<img class="product-image" src="img/product-image.jpg" alt="Produktbild">
<h4 class="product-title">
Produkttitel
</h4>
<span class="mini-desc">Lorem ipsum dolor sit amet, consectetur adipiscing elit…</span>
<div class="price">
<span class="old-price">
<del>79,90€</del>
</span>
<span class="highlight-price">
59,90€
</span>
inkl. MwSt.
</div>
<div class="cart-box">
<button class="decrement">
-
</button>
<div class="add-to-cart">
<span class="counter">
3
</span>
<button >
In den Warenkorb
</button>
</div>
<button class="increment">
+
</button>
</div>
</div>
<!--Produkt-->
<div class="product">
<img class="product-image" src="img/product-image.jpg" alt="Produktbild">
<h4 class="product-title">
Produkttitel
</h4>
<span class="mini-desc">Lorem ipsum dolor sit amet, consectetur adipiscing elit…</span>
<div class="price">
<span class="old-price">
<del>79,90€</del>
</span>
<span class="highlight-price">
59,90€
</span>
inkl. MwSt.
</div>
<div class="cart-box">
<button class="decrement">
-
</button>
<div class="add-to-cart">
<span class="counter">
3
</span>
<button >
In den Warenkorb
</button>
</div>
<button class="increment">
+
</button>
</div>
</div>
</div>
</main>
</body>
</html>