Emphasizing the Last Turn
The Inky editor allows you to play and rewind the game as you edit your ink script. Inky can export the game to the web, using a template consisting of the required HTML, CSS and Javascript. Writing web-based interaction with Ink describes how the template interacts with the Ink script and covers customizing appearance using CSS. As you play, the story scrolls up the screen. Fairly early on, I found that I was having trouble separating text from the current turn (last choice) from previous turns. This seemed like a good opportunity to experiment with altering the default template. The standard paragraph style is: p { font-size : 13pt ; color : #888 ; /* color: rgb(229, 29, 29); */ line-height : 1.7em ; font-weight : lighter ; } I added a new class with a slightly larger font size and weight: /* Tom */ .last_turn { font-size : 14pt ; color : #000 ; font-weight : bolder ; /* color: rgb(29, 29, 29); */ } Then a li...