summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2021-01-19 09:02:47 +0200
committerLars Wirzenius <liw@liw.fi>2021-01-19 09:02:47 +0200
commit3f3bd918fae912c0bf5a965303b7d499e2f9768a (patch)
tree15804e415b089df7d0a81cc76200332356d02d46
parentda99ee88d52ed71930cfaa5d316f7c1511e62b28 (diff)
downloadobnam.org-3f3bd918fae912c0bf5a965303b7d499e2f9768a.tar.gz
css: make feed buttons orange
-rw-r--r--style.css20
1 files changed, 20 insertions, 0 deletions
diff --git a/style.css b/style.css
index c6bd649..5dc85a3 100644
--- a/style.css
+++ b/style.css
@@ -88,3 +88,23 @@ div.sidebar {
span.archivepagedate {
font-family: monospace;
}
+
+/* orange feed button */
+.feedbutton {
+ background: #ff6600;
+ color: white !important;
+ border-left: 1px solid #cc9966;
+ border-top: 1px solid #ccaa99;
+ border-right: 1px solid #993300;
+ border-bottom: 1px solid #331100;
+ padding: 0px 0.5em 0px 0.5em;
+ font-family: sans-serif;
+ font-weight: bold;
+ font-size: small;
+ text-decoration: none;
+ margin-top: 1em;
+}
+.feedbutton:hover {
+ color: white !important;
+ background: #ff9900;
+}