Here's some example code for making choose your own adventure style interactions using pure inline CSS that works in Chosts.
Of interest to @everest @nora and @fasterthanlime I imagine.
<div style="position: relative;"> <details> <summary>Hello</summary> <div style="position: absolute; left: 0; top: 0; width: 400px; height: 400px; background: white;"> <p>Welcome to Fake Twine!</p> <details> <summary>Option 1</summary> <div style="position: absolute; left: 0; top: 0; width: 400px; height: 400px; background: white;">You have chosen option 1.</div> </details> <details> <summary>Option 2</summary> <div style="position: absolute; left: 0; top: 0; width: 400px; height: 400px; background: white;">You have chosen option 2.</div> </details> </div> </details> </div>
it would be a shame if someone else were nerdsniped into writing a compiler that takes a twine story and compiles it into that format
