23 lines
421 B
CSS
23 lines
421 B
CSS
|
|
/*
|
|
Divide the Details page into 3 main sections:
|
|
- Head (Picture, Title, Picture gallery & Videos, Price, Details)
|
|
*/
|
|
.details-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: stretch;
|
|
align-items: center;
|
|
padding: 0px 30px;
|
|
background-color: black;
|
|
margin-top: 30px;
|
|
width: 100%;
|
|
}
|
|
|
|
.details-head {
|
|
display: flex;
|
|
}
|
|
|
|
.details-head-image-frame{
|
|
display: flex;
|
|
} |