More languages
More actions
No edit summary |
No edit summary |
||
Line 13: | Line 13: | ||
margin-right:25px; | margin-right:25px; | ||
overflow:hidden; | overflow:hidden; | ||
display: flex; | display: flex; | ||
align-items: center; | align-items: center; | ||
Line 53: | Line 52: | ||
flex-direction:row; | flex-direction:row; | ||
flex-wrap:wrap; | flex-wrap:wrap; | ||
justify-content: | justify-content:center; | ||
} | } | ||
.essay-picture{ | .essay-picture{ | ||
width:100%; | width:100%; | ||
margin:0 auto; | |||
} | } | ||
.essay-content{ | .essay-content{ |
Revision as of 16:21, 16 September 2023
.essay-flex{
display:flex;
flex-direction:row;
justify-content:flex-start;
align-items:center;
}
.essay-picture{
width:25%;
border-radius:5px;
height:300px;
border:1px solid black;
margin-right:25px;
overflow:hidden;
display: flex;
align-items: center;
justify-content: center;
}
.essay-picture img{
object-fit:cover;
height:300px;
transform:scale(1);
transition:transform 0.4s;
}
.essay-picture img:hover{
transform:scale(1.1);
transition:transform 0.4s;
}
.essay-content{
width:75%;
}
.essay-small{
font-size:0.8em;
}
.essay-big{
font-size:1.2em;
}
.essay-offset{
margin-left:15px;
}
/* mobile view */
@media screen and (max-width: 768px) {
.essay-flex{
display:flex;
flex-direction:row;
flex-wrap:wrap;
justify-content:center;
}
.essay-picture{
width:100%;
margin:0 auto;
}
.essay-content{
width:100%;
}
}