-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
75 lines (65 loc) · 1.19 KB
/
styles.css
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
* {
box-sizing: border-box;
}
body {
padding: 20px;
}
.cards-container {
height: fit-content;
display: flex;
gap: 20px;
flex-direction: row;
flex-wrap: wrap;
justify-content: start;
width: fit-content;
margin: auto;
}
.card-prod {
display: flex;
flex-direction: column;
width: 17%;
min-height: 330px;
max-height: fit-content;
border-radius: 20px;
box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
padding: 20px;
align-items: center;
gap: 8px;
}
.image-container {
height: 50%;
}
.product-image {
width: 160px;
aspect-ratio: 1/1;
cursor: pointer;
margin-bottom: 10px;
}
.product-price {
align-self: flex-end;
margin-top: auto;
}
.product-details {
display: flex;
flex-direction: column;
font-size: 12px;
font-family: "Times New Roman", Times, serif;
gap: 5px;
}
.product-title {
font-weight: bold;
font-size: 14px;
}
.price-btn {
border-radius: 5px;
background-color: rgb(124, 171, 224);
border: none;
width: 60px;
min-width: fit-content;
height: 30px;
cursor: pointer;
box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
}
.start__filled {
color: gold;
}