-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathSoccerBall.css
More file actions
55 lines (47 loc) · 782 Bytes
/
SoccerBall.css
File metadata and controls
55 lines (47 loc) · 782 Bytes
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
/* SoccerBall.css */
.soccer-ball-container {
display: flex;
flex-direction: column;
gap: 16px;
align-items: center;
max-width: 500px;
margin: 0 auto;
padding: 20px;
}
.product-image-container {
display: flex;
justify-content: center;
img {
width: 100%;
}
}
.product-header {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
width: 100%;
}
.product-title {
margin: 0;
}
.product-price {
margin: 0 0 0 24px;
}
.checkout-summary {
display: flex;
flex-direction: column;
align-items: center;
margin: 16px 0;
text-align: center;
}
.checkout-summary p {
margin: 5px 0;
}
.payment-options {
display: flex;
flex-direction: row;
justify-content: center;
gap: 12px;
width: 100%;
}