Advertisement
vincecudz

markashton

Jul 6th, 2013
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.63 KB | None | 0 0
  1. @media only screen and (max-device-width: 550px){
  2. .filePicker-button {
  3. background: #fefcea;
  4. background: -moz-linear-gradient(top, #fefcea 0%, #f1da36 99%);
  5. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fefcea), color-stop(99%,#f1da36));
  6. background: -webkit-linear-gradient(top, #fefcea 0%,#f1da36 99%);
  7. background: -o-linear-gradient(top, #fefcea 0%,#f1da36 99%);
  8. background: -ms-linear-gradient(top, #fefcea 0%,#f1da36 99%);
  9. background: linear-gradient(to bottom, #fefcea 0%,#f1da36 99%);
  10. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fefcea', endColorstr='#f1da36',GradientType=0 );
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement