Skip to content

Instantly share code, notes, and snippets.

@karlcow
Created July 3, 2012 16:37
Show Gist options
  • Save karlcow/3040888 to your computer and use it in GitHub Desktop.
Save karlcow/3040888 to your computer and use it in GitHub Desktop.
gradient - vendor prefixes only
# In http://d2b4ufapzmnxpw.cloudfront.net/build/3751/static/kronos/css/fitnessReports.css
# from the Web site http://runkeeper.com/
.runkeeper .fitnessReports .totalsArea {
width: 729px;
background-color: #333;
-ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#888', endColorstr='#333');
background: -webkit-gradient(linear, left top, left bottom, from(#888), to(#333));
background: -moz-linear-gradient(top, #888, #333);
margin: 30px auto;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment