That’s as far as I’ve come. It adjusts the overall scale, text size and the width.
I also added a small box shadow.
.markdown-embed
{
transform: scale(0.95); /* makes the content smaller */
width: 620px;
font-size: 13px; /* relatively larger text to make up for the downscaling */
text-align: justify;
box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.25);
}
/edit: As it seems, for some strange reason, the code also changes the width and scale inside the preview popover?
margin-left: 50px !important;
margin-right: 50px !important;
I tried this instead, same problem.
.markdown-embed
{
font-size: 13px; /* bigger text to make up for the downscaling */
text-align: justify;
padding-left: 15px !important;
padding-right: 15px !important;
box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.25);
}
.markdown-embed-title { display:none; }
I ended up with this, which I think looks a bit cleaner.