Skip to content

Instantly share code, notes, and snippets.

@srobbin
Created March 4, 2012 17:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save srobbin/1973990 to your computer and use it in GitHub Desktop.
Save srobbin/1973990 to your computer and use it in GitHub Desktop.
Intelligist Demo: Live CSS
/*
You used the drop-down menu!
That appears automatically when give Intelligist multiple gists to display.
You'll also notice that the page styles have changed.
Intelligist has an option that lets you execute the Gist code after it's been
loaded onto the page.
*/
body {
color: #FFF;
background: #000000; /* Old browsers */
background-image: -moz-linear-gradient(top, #000000 0%, #000000 40%, #000333 100%); /* FF3.6+ */
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#000000), color-stop(40%,#000000), color-stop(100%,#000333)); /* Chrome,Safari4+ */
background-image: -webkit-linear-gradient(top, #000000 0%,#000000 40%,#000333 100%); /* Chrome10+,Safari5.1+ */
background-image: -o-linear-gradient(top, #000000 0%,#000000 40%,#000333 100%); /* Opera 11.10+ */
background-image: -ms-linear-gradient(top, #000000 0%,#000000 40%,#000333 100%); /* IE10+ */
background-image: linear-gradient(top, #000000 0%,#000000 40%,#000333 100%); /* W3C */
}
h1 { color: #EFEFEF; }
a { color: #FFC; border-color: #FFC; }
a:hover { color: #FF9; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment