Roll20 uses cookies to improve your experience on our site. Cookies enable you to enjoy certain features, social sharing functionality, and tailor message and display ads to your interests on our site and others. They also help us understand how our site is being used. By continuing to use our site, you consent to our use of cookies. Update your cookie preferences .
×
Create a free account

Character Sheet Fonts - what is available

Hey, I was browsing through some of the character sheets and I noticed that the Song of Ice and Fire role-playing sheet uses the "Narkisim" font by calling it in the .charsheet CSS ( font-family: Narkisim;). I was wondering if there was a list of available fonts anywhere?
1413664946
Lithl
Pro
Sheet Author
API Scripter
The @font-face rule lets you link to a font resource on the web ( Google has a CDN with a number of fonts available), however some people have had issues with it. Beyond @font-face, your options are the fonts that the user has installed on their computer, which you can't possibly know. For that reason, it's important to have a default font in case the one you try to use can't be: * { font-family: Narkisim, serif; } Other generic fonts are sans-serif, fantasy, cursive, and monospace. Here's a list of fonts that ought to work on anyone's computer, as well.
Thanks for the reply, yet again, Brian. A quick browse through the fonts on my computer reveal that I have Narkisim installed, so that explains why I can see it on the Song of Ice and Fire character sheet. I'll have to do some research on the font-face rule. I see the default font on all of the character sheets where it is used. I recall seeing a post somewhere that this is an issue with Chrome, which is my browser of choice. I know that I'll have to get round to installing some alternative browsers on my PC to test my own character sheet, but just haven't got round to it yet. Once that's done I might see some examples of where the font-face rule works.
ps. I don't know why my last post came out bold. I tried to use the "at" symbol and all of a sudden the font style changed in my post and I couldn't change it back. Ironic.
1414329518

Edited 1414330035
Casey
Sheet Author
Just FYI fonts included with @font-face do not work in Firefox and Chrome due to a known bug in the Roll20 content proxy server. See <a href="https://github.com/Roll20/roll20-character-sheets/issues/265" rel="nofollow">https://github.com/Roll20/roll20-character-sheets/issues/265</a>