Skip to content

Instantly share code, notes, and snippets.

@Spaxe
Created November 29, 2016 04:36
Show Gist options
  • Save Spaxe/a8646b14cc96f8de3f88a31b3c3bce57 to your computer and use it in GitHub Desktop.
Save Spaxe/a8646b14cc96f8de3f88a31b3c3bce57 to your computer and use it in GitHub Desktop.
Twine Stylesheet
body {
/* Master background picture */
background-image: url('assets/beach.png');
background-size: cover;
/* Typography */
font: 16px Georgia, Serif;
color: black;
}
/* Hyperlink */
a {
color: blue;
}
a:visited {
color: grey;
}
/* Article text container */
tw-passage {
/* RGB (0-255), Opacity (0 is transparent, 1 is opaque) */
background-color: rgba(255, 255, 255, 0.9);
/* Internal margin */
padding: 40px 60px;
}
/* Undo and redo buttons */
tw-sidebar {
background-color: rgba(255, 255, 255, 0.9);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment