You might wanna try zoom
property like so.
/* All Remnote */
#content {
zoom: 80%;
}
But zoom
doesn’t work on Firefox, according to the documentation.
Here’s some selectors you might wanna use individually.
CSS in the image:
/* All Remnote */
#content {
zoom: 80%;
}
/* Each pane */
#document {
max-width: 900px;
background-color: darkgrey;
}
/* Title, Source and Tags */
#DropToOpenAsDocument {
}
/* Title */
#DocumentTitle {
background-color: lightgreen;
}
/* Source and Tags */
#DropToOpenAsDocument > div > *:not(#DocumentTitle) {
zoom: 80%;
background-color: lightblue;
}