Advertisement
Guest User

Untitled

a guest
Feb 11th, 2013
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.12 KB | None | 0 0
  1. input#submit .clearfix {
  2. *zoom: 1;
  3. }
  4. input#submit .clearfix:before,
  5. input#submit .clearfix:after {
  6. display: table;
  7. line-height: 0;
  8. content: "";
  9. }
  10. input#submit .clearfix:after {
  11. clear: both;
  12. }
  13. input#submit .hide-text {
  14. font: 0/0 a;
  15. color: transparent;
  16. text-shadow: none;
  17. background-color: transparent;
  18. border: 0;
  19. }
  20. input#submit .input-block-level {
  21. display: block;
  22. width: 100%;
  23. min-height: 30px;
  24. -webkit-box-sizing: border-box;
  25. -moz-box-sizing: border-box;
  26. box-sizing: border-box;
  27. }
  28. input#submit .btn {
  29. display: inline-block;
  30. *display: inline;
  31. /* IE7 inline-block hack */
  32.  
  33. *zoom: 1;
  34. padding: 4px 12px;
  35. margin-bottom: 0;
  36. font-size: 14px;
  37. line-height: 20px;
  38. text-align: center;
  39. vertical-align: middle;
  40. cursor: pointer;
  41. color: #333333;
  42. text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  43. background-color: #f5f5f5;
  44. background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
  45. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
  46. background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
  47. background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
  48. background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
  49. background-repeat: repeat-x;
  50. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
  51. border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  52. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  53. *background-color: #e6e6e6;
  54. /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  55.  
  56. filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  57. border: 1px solid #bbbbbb;
  58. *border: 0;
  59. border-bottom-color: #a2a2a2;
  60. -webkit-border-radius: 4px;
  61. -moz-border-radius: 4px;
  62. border-radius: 4px;
  63. *margin-left: .3em;
  64. -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
  65. -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
  66. box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
  67. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement