Created
July 14, 2023 17:48
-
-
Save tsudo/e4d754a3cdec1494f958fe3c757694e5 to your computer and use it in GitHub Desktop.
Joplin userstyle.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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