This repository has been archived on 2024-01-13. You can view files and clone it, but cannot push or open issues or pull requests.
arka-mvp/static/css/product-view-style.css
2022-09-15 22:25:55 +03:00

47 lines
831 B
CSS

.options-list {
}
.option-item {
margin: 5px;
border-radius: 4px;
}
.option-selected {
border: solid 2px red;
}
/* для мобилок <= 700px */
@media screen and (max-width: 701px) {
.product-container {
display: flex;
flex-direction: column;
}
#product-photo-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
margin-bottom: 2em;
}
#product-photo {
width: 90%;
height: auto;
}
}
/* для экранов > 700px */
@media screen and (min-width: 700px) {
.product-container {
display: flex;
flex-direction: row;
}
#product-photo-container {
margin-right: 2em;
}
#product-photo {
max-width: 500px;
min-width: 50%;
height: auto;
}
}