49 lines
806 B
CSS
49 lines
806 B
CSS
.which-image-container {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
height: 100%;
|
|
}
|
|
|
|
.which-image-container :nth-child(2) {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.which-image {
|
|
display: inline-block;
|
|
flex: 1;
|
|
flex-basis: 45%;
|
|
margin: 1% 1% 1% 1%;
|
|
width: 100%;
|
|
height: auto;
|
|
|
|
}
|
|
|
|
.which-image img {
|
|
float: right;
|
|
width: 100%;
|
|
}
|
|
|
|
.image-display2 img {
|
|
float: right;
|
|
width: 100%;
|
|
}
|
|
/* .image-display{
|
|
align-items: center;
|
|
}
|
|
.image-display2{
|
|
align-items: center;
|
|
} */
|
|
.select-show {
|
|
border-style: dashed;
|
|
border-width: 2px;
|
|
border-color: purple;
|
|
|
|
/* padding: 2px; */
|
|
} |