Using Harlowe 2.0.1, the online version of twine. I'm trying to change the font to Google Font's Work Sans but it always defaults to Georgia. I've checked the twine wiki and a couple other sites that were probably outdated for help, but none of the suggestions worked. Some other bits of code I tried I've commented out.
@import 'https://fonts.googleapis.com/css?family=Work+Sans'
/*@import url('https://fonts.googleapis.com/css?family=Work+Sans')*/
tw-story {
font-family: 'Work Sans', Georgia, sans-serif;
/*font: 100% 'Work Sans', Georgia, sans-serif;*/
}
tw-passage{
font-family: 'Work Sans', Georgia, sans-serif;
}
It's probably a simple fix, but I don't know what's missing.
--
Edit: Fixed! Though I'm not sure why. I switched to Snowman, and the google font appeared, and when I switched back to Harlowe, the font stayed. I tried changing the ' to " and using the commented out "@import url('https://fonts.googleapis.com/css?family=Work+Sans')" instead and all those work. "font:" doesn't seem to work though, while "font-family:" does.