-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
109 lines (93 loc) · 1.5 KB
/
styles.css
File metadata and controls
109 lines (93 loc) · 1.5 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
/* styles.css */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
line-height: 1.6;
}
header {
background: #333;
color: #fff;
padding: 10px 0;
text-align: center;
}
nav {
display: flex;
justify-content: center;
background: #444;
padding: 10px;
}
nav a {
color: #fff;
margin: 0 15px;
text-decoration: none;
font-size: 16px;
}
nav a:hover {
color: #f4a261;
}
.container {
padding: 20px;
}
h1 {
color: #333;
}
/* Minimal store layout (for Merchant Center / Shopping feed landing-page checks) */
.product-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
gap: 1.5rem;
margin-top: 1rem;
}
.product-card {
border: 1px solid #ddd;
border-radius: 8px;
padding: 1rem;
background: #fafafa;
}
.product-card img {
width: 100%;
height: 180px;
object-fit: cover;
border-radius: 4px;
}
.price {
font-size: 1.25rem;
font-weight: bold;
color: #1a7f37;
margin: 0.5rem 0;
}
.btn-buy {
display: inline-block;
background: #2563eb;
color: #fff !important;
border: none;
padding: 10px 20px;
cursor: pointer;
border-radius: 6px;
text-decoration: none;
font-size: 1rem;
margin-top: 0.5rem;
}
.btn-buy:hover {
background: #1d4ed8;
}
.product-detail .hero-img {
max-width: 400px;
width: 100%;
border-radius: 8px;
}
.policy-page h2 {
margin-top: 1.5rem;
}
footer {
background: #333;
color: #fff;
text-align: center;
padding: 10px 0;
bottom: 0;
width: 100%;
}
.title {
color: #275fff;
}