kitty/docs/support.html

75 lines
1.8 KiB
HTML
Raw Normal View History

2018-06-08 19:47:07 +03:00
<style>
2021-09-03 06:43:32 +03:00
#support-buttons {
display: flex;
flex-wrap: wrap;
}
2018-06-08 19:47:07 +03:00
.support-button {
border-radius: 6px;
display: inline-block;
cursor: pointer;
color: rgb(51, 51, 51);
font-size: inherit;
font-family: Arial;
font-weight: bold;
padding: 8px 24px;
text-decoration: none;
2021-09-03 06:43:32 +03:00
margin: 1em;
2018-06-08 19:47:07 +03:00
}
.support-button:hover {
transform: scale(1.5);
}
.support-button {
outline: 0;
}
.support-button:visited {
color: rgb(51, 51, 51);
outline: 0;
}
#support-buttons > div {
margin-top: 3ex;
text-align: center;
}
#paypal input[type=submit] {
background: linear-gradient(rgb(255, 236, 100) 5%, rgb(255, 171, 35) 100%) rgb(255, 236, 100);
border: 1px solid rgb(255, 171, 35);
}
2021-09-03 06:43:32 +03:00
a.support-button {
2018-06-08 19:47:07 +03:00
background: linear-gradient(rgb(92, 184, 92) 5%, rgb(62, 142, 62) 100%) rgb(92, 184, 92);
color: rgb(51, 51, 51);
}
</style>
<div id="support-buttons">
2021-09-03 06:43:32 +03:00
<div id="github">
<a class="support-button" href="https://github.com/sponsors/kovidgoyal">Patronage via GitHub</a>
</div>
2018-06-08 19:47:07 +03:00
<div id="patreon">
<a class="support-button" href="https://www.patreon.com/bePatron?u=917933">Patronage via Patreon</a>
</div>
2021-09-03 06:43:32 +03:00
<div id="liberapay">
<a class="support-button" href="https://liberapay.com/kovidgoyal/donate">Patronage via Liberapay</a>
</div>
2018-06-08 19:47:07 +03:00
<div>
<form id="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post" title="Contribute to support calibre development">
<input type="hidden" name="cmd" value="_s-xclick" />
<input type="hidden" name="hosted_button_id" value="FEELASHWEL5HS" />
<input class="support-button" type="submit" name="submit" value="One time support via PayPal" />
<img alt="" border="0" src="https://www.paypalobjects.com/en_GB/i/scr/pixel.gif" width="1" height="1" />
</form>
</div>
</div>