Pmwiki Stylesheet Customization

To change the font in the PMWiki edit box:

Example:

@import url('//fonts.obormot.net?fonts=IBMPlexMono');

#wikiedit textarea {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 500;
}

This changes the font in the edit window to IBM Plex Mono semibold

To fix the appearance of the buttons in the edit box in MacOS

.buttons input {
    font-family: -apple-system, sans-serif
}