Advertisement
Guest User

Untitled

a guest
May 29th, 2012
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. @mixin css_button {
  2. text-shadow: 0 1px #fff;
  3. color: #333;
  4. padding: 5px 20px;
  5. background: -moz-linear-gradient(
  6. top,
  7. #ffffff 0%,
  8. #dedede);
  9. background: -webkit-gradient(
  10. linear, left top, left bottom,
  11. from(#ffffff),
  12. to(#dedede));
  13. border: 0;
  14. border-radius: 4px;
  15. -moz-border-radius: 4px;
  16. -webkit-border-radius: 4px;
  17. -moz-box-shadow:
  18. 0px 2px 3px rgba(000,000,000,0.3),
  19. inset 0px 0px 1px rgba(255,255,255,0.7);
  20. -webkit-box-shadow:
  21. 0px 2px 3px rgba(000,000,000,0.3),
  22. inset 0px 0px 1px rgba(255,255,255,0.7);
  23. &:hover {
  24. background: -moz-linear-gradient(
  25. top,
  26. #ffffff 0%,
  27. #e5e5e5);
  28. background: -webkit-gradient(
  29. linear, left top, left bottom,
  30. from(#ffffff),
  31. to(#e5e5e5)); } }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement