Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.12 KB | None | 0 0
  1. <div class="right"><div class="button"><a class="go-button green" href="<?php echo $checkout; ?>"><span>SHOP</span></a></div>
  2. </div>
  3. <div class="center"><div class="button"><a class="go-button green" href="<?php echo $continue; ?>"><span>SHOP 2</span></a></div>
  4. </div>
  5.  
  6. div.button {
  7. display: inline-block;
  8. -webkit-border-radius: 4px;
  9. -moz-border-radius: 4px;
  10. border-radius: 4px;
  11. -webkit-transition: all 0s 0;
  12. -moz-transition: all 0s 0;
  13. -ms-transition: all 0s 0;
  14. -o-transition: all 0s 0;
  15. transition: all 0s 0;
  16. text-shadow: 0px -1px 0px #42af92;
  17. padding: 5px 15px;
  18. margin: 5px 0px;
  19. color: #fff !important;
  20. font-weight: 100;
  21. font-style: normal;
  22. cursor: pointer !important;
  23.  
  24. }
  25.  
  26. a.go-button {
  27. height: 35px;
  28.  
  29. /../
  30.  
  31. <div class="input cf">
  32. <input type="submit" name="reg-submit" id="reg-submit" value="Kaydı Tamamla" class="button">
  33. </div>
  34.  
  35. div.button, #reg-submit {
  36. display: inline-block;
  37. -webkit-border-radius: 4px;
  38. -moz-border-radius: 4px;
  39. border-radius: 4px;
  40. -webkit-transition: all 0s 0;
  41. -moz-transition: all 0s 0;
  42. -ms-transition: all 0s 0;
  43. -o-transition: all 0s 0;
  44. transition: all 0s 0;
  45. text-shadow: 0px -1px 0px #42af92;
  46. padding: 5px 15px;
  47. margin: 5px 0px;
  48. color: #fff !important;
  49. font-weight: 100;
  50. font-style: normal;
  51. cursor: pointer !important;
  52.  
  53. }
  54.  
  55. input[type="submit"], button{
  56. background:#002147 0px 0px repeat-x;
  57. border-radius:4px;
  58. box-shadow: 0 1px 3px rgba(0,0,0,0.5);
  59. border:1px solid #304764;
  60. color:#FFF;cursor:pointer;
  61. font:bold 12px Helvetica,Arial,sans-serif;
  62. line-height:normal;
  63. margin-right:6px;
  64. padding:6px 8px;
  65. text-decoration:none;
  66. text-shadow:2px 2px 2px rgba(0,0,0,0.25);
  67. width:auto;
  68. overflow:visible;
  69. }
  70.  
  71. input[type="submit"]:hover, input[type="submit"]:focus,
  72. button:hover, button:focus{
  73. background-position: 0px -40px;
  74. border-color:#46494D;cursor:pointer;
  75. }
  76.  
  77. input[type="submit"][disabled], button[disabled]{
  78. background-color:#304764;
  79. background-position: 0px -40px;
  80. border-color:#333;
  81. color:#DDD;
  82. }
  83.  
  84. input[type="submit"]:focus, button:focus{
  85. outline :#000 dotted 1px9;
  86. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement