Created
July 3, 2012 16:37
-
-
Save karlcow/3040888 to your computer and use it in GitHub Desktop.
gradient - vendor prefixes only
This file contains 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
# 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