32 lines
585 B
CSS
32 lines
585 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: start;
|
|
padding: 0px 15px;
|
|
margin-top: 60px;
|
|
}
|
|
|
|
.details-head {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: stretch;
|
|
align-items: center;
|
|
width: 100%;
|
|
}
|
|
|
|
.details-head-image-frame {
|
|
display: flex;
|
|
height: 300px;
|
|
width: 100%;
|
|
background-color: gray;
|
|
}
|
|
|
|
.details-head-title {
|
|
font-size: 25px;
|
|
} |