23 lines
327 B
CSS
23 lines
327 B
CSS
body {
|
|
font-family: Arial, sans-serif;
|
|
margin: 20px;
|
|
background: #f7f7f7;
|
|
}
|
|
|
|
|
|
.filter-box {
|
|
margin-bottom: 20px;
|
|
background: #fff;
|
|
padding: 12px;
|
|
border-radius: 8px;
|
|
box-shadow: 0 1px 3px rgba(0,0,0,0.06);
|
|
}
|
|
|
|
|
|
.product {
|
|
border: 1px solid #e1e1e1;
|
|
padding: 10px;
|
|
margin-bottom: 10px;
|
|
border-radius: 5px;
|
|
background: #fff;
|
|
} |