From 3c46bd7b2f61fec1f5719d73d88c3553a6862d52 Mon Sep 17 00:00:00 2001 From: "Luke T. Shumaker" Date: Sun, 14 Apr 2024 10:38:36 -0600 Subject: wip --- public/sponsor/index.html | 77 ++++++++++++++++++++++++++++++++++++++ public/sponsor/kofi-icon.png | Bin 0 -> 7958 bytes public/sponsor/liberapay-icon.svg | 1 + public/sponsor/patreon-icon.svg | 3 ++ public/sponsor/sponsor.css | 64 +++++++++++++++++++++++++++++++ 5 files changed, 145 insertions(+) create mode 100644 public/sponsor/index.html create mode 100644 public/sponsor/kofi-icon.png create mode 100644 public/sponsor/liberapay-icon.svg create mode 100644 public/sponsor/patreon-icon.svg create mode 100644 public/sponsor/sponsor.css (limited to 'public/sponsor') diff --git a/public/sponsor/index.html b/public/sponsor/index.html new file mode 100644 index 0000000..d8f1ef0 --- /dev/null +++ b/public/sponsor/index.html @@ -0,0 +1,77 @@ + + + + + Sponsor — Luke T. Shumaker + + + + + +
+ +

Sponsor Luke T. Shumaker

+ +

Hi, I'm Luke. I'm working on improving various aspects of the + GNU/Linux-libre ecosystem.

+ + + +

Please consider sponsoring my work, so I can continue putting so +much time and effort in to these things. Otherwise, I'm going to have +to cut back my activities by at least 50% in the next year.

+ +

There are several ways you can sponsor me:

+ + + +

It is my understanding that donating with Patreon or Ko-fi requires +Javascript code that does not respect your computing freedom, while +Liberapay makes no such assault on your freedom. If you'd like to +support me, but can't use or don't want to use any of the above +platforms, reach out to me at <lukeshu@lukeshu.com>.

+ +
+ + + diff --git a/public/sponsor/kofi-icon.png b/public/sponsor/kofi-icon.png new file mode 100644 index 0000000..2b6d55e Binary files /dev/null and b/public/sponsor/kofi-icon.png differ diff --git a/public/sponsor/liberapay-icon.svg b/public/sponsor/liberapay-icon.svg new file mode 100644 index 0000000..2a9ea21 --- /dev/null +++ b/public/sponsor/liberapay-icon.svg @@ -0,0 +1 @@ + diff --git a/public/sponsor/patreon-icon.svg b/public/sponsor/patreon-icon.svg new file mode 100644 index 0000000..dd8717c --- /dev/null +++ b/public/sponsor/patreon-icon.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/sponsor/sponsor.css b/public/sponsor/sponsor.css new file mode 100644 index 0000000..6975341 --- /dev/null +++ b/public/sponsor/sponsor.css @@ -0,0 +1,64 @@ +/* generic */ + +a.donate-btn { + margin: 0.25em 0; + + border-radius: 5px; + display: inline-block; + padding: 5px 7px 3px 7px; + + font-size: 14px; + font-weight: 700; + line-height: 22px; + text-decoration: none; +} +a.donate-btn > img { + height: 16px; + margin-top: 2px; + margin-right: 3px; + vertical-align: top; +} + +/* Liberapay */ + +a.donate-btn.liberapay { + background-color: #f6c915; + color: #1a171b; + font-family: Helvetica Neue,Helvetica,sans-serif; +} +a.donate-btn.liberapay:hover { + background-color: #fbce1a; +} + +/* Ko-fi */ + +a.donate-btn.kofi { + font-family: 'Quicksand',Helvetica,Century Gothic,sans-serif; + background-color: #29abe0; + color: #ffffff; +} +a.donate-btn.kofi:hover { + background-color: #48b7e4; +} + +/* Patreon */ + +a.donate-btn.patreon { + background-color: #000000; + color: #ffffff; + outline: solid 1px #000000; + font-weight: 400; +} +a.donate-btn.patreon > span { + text-transform: uppercase; +} +a.donate-btn.patreon > img { + filter: invert(100%); +} +a.donate-btn.patreon:hover { + background-color: #ffffff; + color: #000000; +} +a.donate-btn.patreon:hover > img { + filter: none; +} -- cgit v1.2.3-2-g168b