Skip to content

Instantly share code, notes, and snippets.

@feedhenry-gists
Created June 9, 2011 09:46
Show Gist options
  • Save feedhenry-gists/1016440 to your computer and use it in GitHub Desktop.
Save feedhenry-gists/1016440 to your computer and use it in GitHub Desktop.
App Anatomy theme.css
p {
color: white;
}
a{
color: #2879c7;
}
body {
background-image: linear-gradient(bottom, rgb(38,43,50) 24%, rgb(3,3,3) 5%);
background-image: -o-linear-gradient(bottom, rgb(38,43,50) 24%, rgb(3,3,3) 51%);
background-image: -moz-linear-gradient(bottom, rgb(38,43,50) 24%, rgb(3,3,3) 51%);
background-image: -webkit-linear-gradient(bottom, rgb(38,43,50) 24%, rgb(3,3,3) 51%);
background-image: -ms-linear-gradient(bottom, rgb(38,43,50) 24%, rgb(3,3,3) 51%);
background-image: -webkit-gradient(
linear,
left bottom,
left top,
color-stop(0.04, rgb(38,43,50)),
color-stop(0.81, rgb(3,3,3))
);
color: #FDFDFD;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment