27 lines
310 B
CSS
27 lines
310 B
CSS
.container {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: 15px;
|
|
}
|
|
|
|
.img_ll {
|
|
border-radius: 30px;
|
|
width: 30%;
|
|
height: auto;
|
|
}
|
|
|
|
.text {
|
|
flex: 1;
|
|
text-align: justify;
|
|
}
|
|
|
|
.container.reverse {
|
|
flex-direction: row-reverse;
|
|
}
|
|
|
|
|
|
|
|
|
|
.container.image-left {
|
|
flex-direction: row;
|
|
} |