summaryrefslogtreecommitdiff
path: root/docs/res
diff options
context:
space:
mode:
authorRasmus Andersson <rasmus@notion.se>2022-06-08 00:38:29 +0300
committerRasmus Andersson <rasmus@notion.se>2022-06-08 00:38:29 +0300
commit4dd11771f0197fbcc8279d92340cf9250738cd01 (patch)
tree96bdcdece18258d437f9cc545a76c4b0703533ba /docs/res
parent24d48fe8d277b646fddb3f4d38bf6dc31a8250db (diff)
downloadinter-4dd11771f0197fbcc8279d92340cf9250738cd01.tar.xz
website: add /download/ page
Diffstat (limited to 'docs/res')
-rw-r--r--docs/res/base.css31
1 files changed, 31 insertions, 0 deletions
diff --git a/docs/res/base.css b/docs/res/base.css
index 94d76a2ca..4ddd681f8 100644
--- a/docs/res/base.css
+++ b/docs/res/base.css
@@ -833,3 +833,34 @@ instead.
@media only screen and (max-width: 565px) {
.charset-table { --columns: var(--columnsXS); }
}
+
+
+#sponsor-button {
+ display: inline-block;
+ min-width: 1%;
+ max-width: 100%;
+ height: 2em;
+ line-height: 2em;
+ border-radius: 0.25em;
+ border: 1px solid rgba(0,0,0,0.2);
+ font-weight: 500; font-weight: 480;
+ text-decoration: none;
+ padding: 0 0.6em;
+ user-select: none; -webkit-user-select: none;
+}
+#sponsor-button:hover {
+ border-color: rgba(0,0,0,0.6);
+ color: inherit;
+}
+#sponsor-button span {
+ display: flex;
+ align-items: center;
+ white-space: nowrap;
+}
+#sponsor-button span::before {
+ content: "♥";
+ color: var(--red);
+ margin-right: 0.3em;
+ font-size: 1.1em;
+ line-height: 1em;
+}