Hi, newbie here, coming from Notion:
Maybe useful for some (and maybe already posted here):
.node-displayed-image {
max-width:500px;
max-height:500px;
float:left;
margin-right:20px;
}
To have a cool shadow behind an image:
.node-displayed-image {
display:inline-block;
position:relative;
border:1px solid #ccc;
padding:5px;
background:#f2f2f2;
margin-bottom:30px;
-webkit-box-shadow: 0 28px 16px -26px rgba(0, 0, 0);
-moz-box-shadow: 0 28px 16px -26px rgba(0, 0, 0);
box-shadow: 0 28px 16px -26px rgba(0, 0, 0);
}
Cheers!