Advertisement
FlashBuddy

3 State CSS3 Button

Mar 29th, 2012
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.33 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>3 State CSS3 Button</title>
  4. <style type="text/css">
  5. <!--
  6. .button,#searchsubmit,#wp_page_numbers a{
  7. display:inline-block;
  8. position:relative;
  9. padding:7px 15px;
  10. -moz-border-radius:18px;
  11. -webkit-border-radius:18px;
  12. border-radius:18px;
  13. font:15px/1.4 "myriad-pro-1","myriad-pro-2","Lucida Grande",Sans-Serif;
  14. background-color:#b6d3f4;
  15. background-image:-webkit-gradient(linear, left top, left bottom, from(#b6d3f4), to(#5483b8));
  16. background-image:-webkit-linear-gradient(top, #b6d3f4, #5483b8);
  17. background-image:-moz-linear-gradient(top, #b6d3f4, #5483b8);
  18. background-image:-ms-linear-gradient(top, #b6d3f4, #5483b8);
  19. background-image:-o-linear-gradient(top, #b6d3f4, #5483b8);
  20. color:white !important;
  21. -webkit-box-shadow:inset 0 1px 1px #fff,0 3px 3px rgba(0,0,0,0.6);
  22. -moz-box-shadow:inset 0 1px 1px #fff,0 3px 3px rgba(0,0,0,0.6);
  23. box-shadow:inset 0 1px 1px #fff,0 3px 3px rgba(0,0,0,0.6);
  24. border:1px solid #9ac9ff !important;
  25. font-weight:600;
  26. text-shadow:0 -1px 0 rgba(0,0,0,0.3);
  27. text-decoration: none;
  28. }
  29.  
  30. .ie8 .button,.ie8 #searchsubmit,.ie8 #wp_page_numbers a{
  31. background:#4b8db5;
  32. }
  33.  
  34. .button:hover,#searchsubmit:hover,#wp_page_numbers a:hover{
  35. -webkit-box-shadow:inset 0 2px 6px #fff,0 3px 3px rgba(0,0,0,0.6);
  36. -moz-box-shadow:inset 0 2px 6px #fff,0 3px 3px rgba(0,0,0,0.6);
  37. box-shadow:inset 0 2px 6px #fff,0 3px 3px rgba(0,0,0,0.6)
  38. }
  39.  
  40. .button:active,#searchsubmit:active,#wp_page_numbers a:active{
  41. -webkit-box-shadow:inset 0 2px 6px #fff,0 1px 1px rgba(0,0,0,0.6);
  42. -moz-box-shadow:inset 0 2px 6px #fff,0 1px 1px rgba(0,0,0,0.6);
  43. box-shadow:inset 0 2px 6px #fff,0 1px 1px rgba(0,0,0,0.6);
  44. top:2px}#searchsubmit{padding:3px 15px}.explanation{background-color:#fefcaf;
  45. background-image:-webkit-gradient(linear, left top, left bottom, from(#fefcaf), to(#fffeda));
  46. background-image:-webkit-linear-gradient(top, #fefcaf, #fffeda);
  47. background-image:-moz-linear-gradient(top, #fefcaf, #fffeda);
  48. background-image:-ms-linear-gradient(top, #fefcaf, #fffeda);
  49. background-image:-o-linear-gradient(top, #fefcaf, #fffeda);
  50. padding:15px;
  51. margin:0 0 20px 0;
  52. -webkit-box-shadow:1px 1px 3px rgba(0,0,0,0.25);
  53. -moz-box-shadow:1px 1px 3px rgba(0,0,0,0.25);
  54. box-shadow:1px 1px 3px rgba(0,0,0,0.25)
  55. }
  56.  
  57. -->
  58. </style>
  59. </head>
  60. <body>
  61. <p><a class="button" href="">Download</a></p>
  62. </body>
  63. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement