-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbottoms.css
61 lines (54 loc) · 1.32 KB
/
bottoms.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
/* Basic Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Use Irish Grover throughout */
body {
font-family: 'Irish Grover', cursive;
background-image: url(images/backgrounds/finalcleanbckgrnd.png);
background-repeat: repeat;
}
/* Container for the page’s main content */
.tops-container {
max-width: 1200px;
margin: 2rem auto;
padding: 0 1rem;
text-align: center;
}
/* "Tops" title */
.tops-title {
font-size: 2.5rem;
margin-bottom: 1.5rem;
}
/* Grid layout for cards */
.tops-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
gap: 1.5rem;
justify-items: center; /* center each card in its grid cell */
}
/* Card styling */
.top-card {
background-color: #AF5992; /* Purple/pink tone (modify as needed) */
width: 180px;
border-radius: 12px;
padding: 1rem;
text-align: center;
box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
/* The black silhouette area (image placeholder) */
.top-image {
width: 100%;
height: 200px;
background-color: #000; /* black silhouette background */
border-radius: 8px;
margin-bottom: 0.5rem;
}
/* Text inside the card */
.store, .price, .name {
color: #fff;
margin: 0.3rem 0;
font-size: 1rem;
}