Dogecoin and Bitcoin Donate Buttons HTML and CSS


SUBMITTED BY: Guest

DATE: May 24, 2014, 12:18 a.m.

FORMAT: HTML

SIZE: 1.8 kB

HITS: 960

  1. <!DOCTYPE HTML>
  2. <head>
  3. </head>
  4. <a href="dogecoin:DJtUZqNHdPhNLLs5daksjYG1k6MLocBAQD" style="text-decoration: none;">
  5. <div class="doge">
  6. Donate Dogecoins
  7. </div>
  8. </a>
  9. <a href="bitcoin:">
  10. <div class="bit">
  11. Donate Bitcoins
  12. </div>
  13. </a>
  14. <style>
  15. div.doge {
  16. background-color: #ba9f33;
  17. width: 200px;
  18. height: 50px;
  19. border-radius: 10px;
  20. border: 2px #7c6c2a solid;
  21. color: white;
  22. text-align: center;
  23. line-height: 50px;
  24. -webkit-transition: background-color 1s, box-shadow 1s;
  25. box-shadow: 1px 2px 2px black;
  26. margin-left: -100px;
  27. margin-top: -25px;
  28. left: 50%;
  29. top: 40%;
  30. position: absolute;
  31. font-size: 20px;
  32. }
  33. div.doge:hover {
  34. background-color: #d2b159;
  35. width: 200px;
  36. height: 50px;
  37. border-radius: 10px;
  38. border: 2px #7c6c2a solid;
  39. color: white;
  40. text-align: center;
  41. line-height: 50px;
  42. box-shadow: 1px 5px 5px black;
  43. }
  44. div.bit {
  45. background-color: #f7931a;
  46. width: 200px;
  47. height: 50px;
  48. border-radius: 10px;
  49. border: 2px black solid;
  50. color: white;
  51. text-align: center;
  52. line-height: 50px;
  53. -webkit-transition: background-color 1s, box-shadow 1s;
  54. box-shadow: 1px 2px 2px black;
  55. margin-left: -100px;
  56. margin-top: -25px;
  57. left: 50%;
  58. top: 60%;
  59. position: absolute;
  60. font-size: 20px;
  61. }
  62. div.bit:hover {
  63. background-color: #ffaa45;
  64. width: 200px;
  65. height: 50px;
  66. border-radius: 10px;
  67. border: 2px black solid;
  68. color: white;
  69. text-align: center;
  70. line-height: 50px;
  71. box-shadow: 1px 5px 5px black;
  72. }
  73. * {
  74. font-family: 'Open Sans', sans-serif;
  75. }
  76. body {
  77. background-color: #f2ede0;
  78. }
  79. </style>

comments powered by Disqus