summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
author53hornet <atc@53hor.net>2021-12-22 23:13:52 -0500
committer53hornet <atc@53hor.net>2021-12-22 23:13:52 -0500
commit68b8068554f98890ec0330a97e32310b8c30b0dc (patch)
tree698226de9c2b5a28ca47fe2bee43ad17183dd775 /includes
parentc4132486acea24c75e6ed0e74eb329d879990c17 (diff)
download53hor-68b8068554f98890ec0330a97e32310b8c30b0dc.tar.xz
53hor-68b8068554f98890ec0330a97e32310b8c30b0dc.zip
feat: add monero do donate, update post, add rss to links
Diffstat (limited to 'includes')
-rw-r--r--includes/foot.php1
-rw-r--r--includes/style.css20
2 files changed, 20 insertions, 1 deletions
diff --git a/includes/foot.php b/includes/foot.php
index d3754d6..c0c0082 100644
--- a/includes/foot.php
+++ b/includes/foot.php
@@ -4,6 +4,7 @@
<footer>
<p>
Content licensed under the <a target="_blank" href="https://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.
+ <br>
Source code licensed under the <a target="_blank" href="https://opensource.org/licenses/BSD-3-Clause"> BSD 3-Clause license</a>, unless otherwise stated.
</p>
diff --git a/includes/style.css b/includes/style.css
index c8d9a33..2ac048e 100644
--- a/includes/style.css
+++ b/includes/style.css
@@ -61,7 +61,6 @@ nav svg rect {
a:link {
color: var(--slate);
- border-radius: var(--box-radius);
}
a:visited {
@@ -199,3 +198,22 @@ footer {
font-size: 0.75em;
text-align: center;
}
+
+.centered {
+ text-align: center;
+}
+
+a.donation,
+a.donation:visited {
+ background-color: var(--ruby);
+ border-radius: var(--box-radius);
+ padding: 1em;
+ text-decoration: none;
+ color: var(--slate);
+ border-left: var(--box-border);
+ border-right: var(--box-border);
+}
+
+a.donation:hover {
+ color: var(--white);
+}