27 lines
379 B
CSS
27 lines
379 B
CSS
.product-form {
|
|
width: 20rem;
|
|
max-width: 90%;
|
|
margin: auto;
|
|
display: block;
|
|
}
|
|
|
|
.product-item {
|
|
width: 20rem;
|
|
max-width: 95%;
|
|
margin: 1rem;
|
|
}
|
|
|
|
.product__title {
|
|
font-size: 1.2rem;
|
|
text-align: center;
|
|
}
|
|
|
|
.product__price {
|
|
text-align: center;
|
|
color: #4d4d4d;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.product__description {
|
|
text-align: center;
|
|
} |