mirror of
https://github.com/Shchoholiev/shopping-assistant-web-client.git
synced 2025-04-03 16:19:48 +00:00
74 lines
1.2 KiB
CSS
74 lines
1.2 KiB
CSS
.container {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
}
|
|
|
|
.product-div {
|
|
height: 310px;
|
|
width: 200px;
|
|
border-radius: 10px;
|
|
box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
|
|
position: relative;
|
|
padding: 0 10px 0 10px;
|
|
margin: 30px;
|
|
}
|
|
|
|
.product-img {
|
|
height: 130px;
|
|
width: 100%;
|
|
align-self: center;
|
|
display: block;
|
|
margin: 10px;
|
|
}
|
|
|
|
.product-description {
|
|
display: -webkit-box;
|
|
-webkit-line-clamp: 2;
|
|
-webkit-box-orient: vertical;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.button-amazon {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
background-color: #009FFF;
|
|
border: none;
|
|
border-radius: 10px;
|
|
position: absolute;
|
|
width: 90%;
|
|
height: 40px;
|
|
bottom: 10px;
|
|
}
|
|
|
|
.star {
|
|
position: absolute;
|
|
bottom: 60px;
|
|
}
|
|
|
|
.rating {
|
|
position: absolute;
|
|
bottom: 60px;
|
|
left: 35px;
|
|
height: 16px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.button-row {
|
|
display: flex;
|
|
}
|
|
|
|
.price-label {
|
|
position: absolute;
|
|
right: 10px;
|
|
font-weight: bold;
|
|
font-size: larger;
|
|
height: 16px;
|
|
bottom: 60px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
} |