CSS tweaks

This commit is contained in:
Marcus Noble 2020-11-08 19:16:10 +00:00
parent aafc207b43
commit 1de718526c
2 changed files with 9 additions and 1 deletions

View File

@ -21,20 +21,22 @@ class FeedItem extends HTMLElement {
width: 100% !important; width: 100% !important;
overflow: scroll !important; overflow: scroll !important;
overflow-x: auto !important; overflow-x: auto !important;
font-size: 18px;
} }
* { * {
max-width: 100% !important; max-width: 100% !important;
height: auto !important; height: auto !important;
float: none !important;
} }
table { table {
width: 100% !important; width: 100% !important;
} }
img { img {
margin: auto auto !important; margin: auto auto !important;
} }
p { p {
font-family: charter, Georgia, "Times New Roman", Times, serif; font-family: charter, Georgia, "Times New Roman", Times, serif;
font-size: 21px;
font-style: normal; font-style: normal;
font-weight: 400; font-weight: 400;
letter-spacing: -0.063px; letter-spacing: -0.063px;
@ -47,6 +49,9 @@ class FeedItem extends HTMLElement {
:host(.dark) a { :host(.dark) a {
color: #ccc; color: #ccc;
} }
a:hover, :host(.dark) a:hover {
color: #ff2e88;
}
</style> </style>
`; `;

View File

@ -1,3 +1,6 @@
body {
padding-bottom: 20px;
}
.hide { .hide {
display: none; display: none;