summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan DeMasi <jrdemasi@gmail.com>2020-03-09 23:53:24 -0600
committerJonathan DeMasi <jrdemasi@gmail.com>2020-03-09 23:53:24 -0600
commita941b4a520dcc2af2135b632183cc98383aca356 (patch)
tree815565fc8b66677b7cba57cb8372e1a094a5a106
parent3f0ebd77445de6bbe20fa77756c7d55472db7442 (diff)
downloadjthanio-a941b4a520dcc2af2135b632183cc98383aca356.tar
jthanio-a941b4a520dcc2af2135b632183cc98383aca356.tar.gz
jthanio-a941b4a520dcc2af2135b632183cc98383aca356.tar.bz2
jthanio-a941b4a520dcc2af2135b632183cc98383aca356.tar.lz
jthanio-a941b4a520dcc2af2135b632183cc98383aca356.tar.xz
jthanio-a941b4a520dcc2af2135b632183cc98383aca356.tar.zst
jthanio-a941b4a520dcc2af2135b632183cc98383aca356.zip
few css fixes
-rw-r--r--jthanio/static/css/jthanio.css18
1 files changed, 16 insertions, 2 deletions
diff --git a/jthanio/static/css/jthanio.css b/jthanio/static/css/jthanio.css
index f2f6b61..8c4b531 100644
--- a/jthanio/static/css/jthanio.css
+++ b/jthanio/static/css/jthanio.css
@@ -1,15 +1,16 @@
+/* Blog post text and tag styling
+-------------------------------------------------- */
.badge-light a {
color: #000000;
font-size: 14px;
}
.rich-text p {
font-size: 15px;
+ clear: right;
}
/* Sticky footer styles
-------------------------------------------------- */
-
-
#page-content {
min-height: 100vh;
}
@@ -22,3 +23,16 @@
height: 60px;
line-height: 60px; /* Vertically center the text there */
}
+
+/* Image support
+-------------------------------------------------- */
+img {
+ vertical-align: middle;
+ border-style: none;
+ max-width: 100%;
+ height: auto;
+}
+/* We need a fix for right align images */
+.richtext-image.right {
+ float: right;
+}