apply midou's patch

This commit is contained in:
Akis 2022-08-17 16:51:26 +03:00
parent 5f74e0454c
commit 71d6a9d9cd
Signed by untrusted user: akis
GPG Key ID: 267BF5C6677944ED

View File

@ -11,7 +11,16 @@ description: The ways you can donate to us and more.
If you donate, we will be more motivated to work on the server and host more stuff and maybe even get more hardware. We really recommend you donate any spare money you have if you enjoy or use our services on a daily basis. Thanks!
## Donation Links
# Donation Links
## Credit Card
<div class="buttons">
<a href="https://liberapay.com/ProjectSegfault/donate">
<div class="i-simple-icons:liberapay"/>Donate</a>
</div>
## Cryptos
### You can use our [domain name](https://projectsegfau.lt) as a crypto wallet address in supported OpenAlias Clients such as [MyMonero](https://mymonero.com/), [Electrum](https://electrum.org/) and [Electrum-LTC](https://electrum-ltc.org/).
@ -36,4 +45,40 @@ _You can find all of our financial reports on [our transparency repository on Gi
code {
word-wrap: break-word;
}
.money {
}
@media screen and (max-width: 452px) {
.buttons {
flex-direction: column;
}
}
html {
--accent: #F6C915;
}
html.light {
--accent: #F6C915;
}
.buttons a {
text-decoration: none;
background-color: var(--accent);
padding: 8px 1em 8px 1em;
color: var(--primary);
border-radius: 10px;
transition: filter 0.25s;
display: inline-flex;
align-items: center;
gap: 4px;
}
.buttons a:hover {
filter: brightness(125%);
}
</style>