Skip to content

Instantly share code, notes, and snippets.

@tsudo
Created July 14, 2023 17:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tsudo/e4d754a3cdec1494f958fe3c757694e5 to your computer and use it in GitHub Desktop.
Save tsudo/e4d754a3cdec1494f958fe3c757694e5 to your computer and use it in GitHub Desktop.
Joplin userstyle.css
/* For styling the rendered Markdown */
/* Adds HEADER Text */
.exported-note::before {
font-family: 'Open Sans';
font-size: 10px;
color: darkgrey;
display: block;
text-align: right;
content: 'Author: NAME - ORGANIZATION';
}
/* Adds FOOTER Text */
.exported-note::after {
font-family: 'Open Sans';
font-size: 10px;
color: darkgrey;
display: block;
text-align: right;
border-top: 1px solid darkgrey;
content: 'Unless otherwise noted this document is LICENSED / CLASSIFED as "XYZ"';
}
/* Removes Note Title from exported PDFs */
@media print {
.exported-note-title {
display: none;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment