Skip to content

Commit

Permalink
Used CSS standard declaration for the linear gradient
Browse files Browse the repository at this point in the history
  • Loading branch information
kmp1 committed Mar 21, 2014
1 parent a761f66 commit a5205e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gh-fork-ribbon.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.15));
background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.15));
background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.15));
background-image: linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.15));
background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.15));

/* Add a drop shadow */
-webkit-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.5);
Expand Down

0 comments on commit a5205e0

Please sign in to comment.