From 1de718526c6de54641d2b29cdb3947135613c589 Mon Sep 17 00:00:00 2001 From: Marcus Noble Date: Sun, 8 Nov 2020 19:16:10 +0000 Subject: [PATCH] CSS tweaks --- views/static/feed-item.js | 7 ++++++- views/static/style.css | 3 +++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/views/static/feed-item.js b/views/static/feed-item.js index 5db2b29..92c6129 100644 --- a/views/static/feed-item.js +++ b/views/static/feed-item.js @@ -21,20 +21,22 @@ class FeedItem extends HTMLElement { width: 100% !important; overflow: scroll !important; overflow-x: auto !important; + font-size: 18px; } * { max-width: 100% !important; height: auto !important; + float: none !important; } table { width: 100% !important; } + img { margin: auto auto !important; } p { font-family: charter, Georgia, "Times New Roman", Times, serif; - font-size: 21px; font-style: normal; font-weight: 400; letter-spacing: -0.063px; @@ -47,6 +49,9 @@ class FeedItem extends HTMLElement { :host(.dark) a { color: #ccc; } + a:hover, :host(.dark) a:hover { + color: #ff2e88; + } `; diff --git a/views/static/style.css b/views/static/style.css index 982d9ba..61dcf4f 100644 --- a/views/static/style.css +++ b/views/static/style.css @@ -1,3 +1,6 @@ +body { + padding-bottom: 20px; +} .hide { display: none;