Guest User

Untitled

a guest
Jan 22nd, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. .btn {
  2. cursor: pointer;
  3. display: inline-block;
  4. background-color: #e6e6e6;
  5. background-repeat: no-repeat;
  6. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
  7. background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  8. background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
  9. background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  10. background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  11. background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  12. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
  13. padding: 5px 14px 6px;
  14. text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  15. color: #333;
  16. font-size: 13px;
  17. line-height: normal;
  18. border: 1px solid #ccc;
  19. border-bottom-color: #bbb;
  20. -webkit-border-radius: 4px;
  21. -moz-border-radius: 4px;
  22. border-radius: 4px;
  23. -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  24. -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  25. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  26. -webkit-transition: 0.1s linear all;
  27. -moz-transition: 0.1s linear all;
  28. transition: 0.1s linear all;
  29. }
Add Comment
Please, Sign In to add comment