Created
November 29, 2016 04:36
-
-
Save Spaxe/a8646b14cc96f8de3f88a31b3c3bce57 to your computer and use it in GitHub Desktop.
Twine Stylesheet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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