support.html 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <style>
  2. #support-buttons {
  3. display: flex;
  4. flex-wrap: wrap;
  5. }
  6. .support-button {
  7. box-sizing: border-box;
  8. border-radius: 6px;
  9. display: inline-block;
  10. cursor: pointer;
  11. color: rgb(51, 51, 51);
  12. font-size: inherit;
  13. font-family: Arial;
  14. font-weight: bold;
  15. padding: 8px 24px;
  16. text-decoration: none;
  17. margin-left: 1em;
  18. outline: 0;
  19. border-width: 0;
  20. }
  21. .support-button:hover {
  22. transform: scale(1.2);
  23. border: solid 1px rgb(92, 184, 92);
  24. }
  25. .support-button:visited {
  26. color: rgb(51, 51, 51);
  27. outline: 0;
  28. }
  29. #support-buttons > div {
  30. margin-top: 3ex;
  31. text-align: center;
  32. }
  33. #paypal input[type=submit] {
  34. background: linear-gradient(rgb(92, 184, 92) 5%, rgb(62, 142, 62) 100%) rgb(92, 184, 92);
  35. padding-top: 10px; padding-bottom: 10px;
  36. color: rgb(51, 51, 51);
  37. border: 1px solid rgb(92, 184, 92);
  38. }
  39. a.support-button {
  40. background: linear-gradient(rgb(92, 184, 92) 5%, rgb(62, 142, 62) 100%) rgb(92, 184, 92);
  41. color: rgb(51, 51, 51);
  42. }
  43. </style>
  44. <div id="support-buttons">
  45. <div id="github">
  46. <a class="support-button" href="https://github.com/sponsors/kovidgoyal">Patronage via GitHub</a>
  47. </div>
  48. <div id="patreon">
  49. <a class="support-button" href="https://www.patreon.com/bePatron?u=917933">Patronage via Patreon</a>
  50. </div>
  51. <div id="liberapay">
  52. <a class="support-button" href="https://liberapay.com/kovidgoyal/donate">Patronage via Liberapay</a>
  53. </div>
  54. <div>
  55. <form id="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post" title="Contribute to support calibre development">
  56. <input type="hidden" name="cmd" value="_s-xclick" />
  57. <input type="hidden" name="hosted_button_id" value="FEELASHWEL5HS" />
  58. <input class="support-button" type="submit" name="submit" value="One time support via PayPal" />
  59. <img alt="" border="0" src="https://www.paypalobjects.com/en_GB/i/scr/pixel.gif" width="1" height="1" />
  60. </form>
  61. </div>
  62. </div>