0 votes
by (350 points)
I'm using Harlowe 2.1.0 and I want to make the text a little smaller and change the style. Do I have to code it or is there a button I'm missing or something?

1 Answer

+1 vote
by (23.6k points)
edited by

For this you use your Story Stylesheet. For example:

tw-story {
  font-family: monaco, monospace, helvetica, sans-serif;
  font-size:125%;
  color: green;
  background-color: orange;
}

 

by (350 points)
Thank you for answering~!
by (159k points)

CSS is also used to create the top, bottom, left & right blank areas around where the passage content is shown.

tw-story {
	padding: 5% 20%;
}

WARNING: If your story layout includes Harlowe's default left side bar then remember to leave enough blank space on the left to fit it.

...