Tuesday, June 28, 2016

Twine Code: Backgrounds, External Links, Link Color

Here's the code you can copy and paste into your Twine game editing windows!


Backgrounds (add this code into the Twine Stylesheet):

body { background-image: url("add URL here");
no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}



External Links:

(link: "Link Text Here")[(gotoURL:"http://www.google.com")]



Link Color (instead of gray, you can type in any basic color):

tw-link
{
  color: gray;
}

No comments:

Post a Comment