From 3cade4fe7380dd713dd150013769ffaa9ed1a430 Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Thu, 24 Mar 2022 22:28:09 -0500 Subject: [PATCH] add the image floats to the plain CSS primarily it's the main page that just looks weird without it --- incorporealcms/static/css/plain.css | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/incorporealcms/static/css/plain.css b/incorporealcms/static/css/plain.css index f02e3d8..f0f360b 100644 --- a/incorporealcms/static/css/plain.css +++ b/incorporealcms/static/css/plain.css @@ -10,3 +10,19 @@ .img-75 { max-width: 75% !important; } + +.img-center { + display: block; + margin-left: auto; + margin-right: auto; +} + +.img-left { + float: left; + margin-right: 1em; +} + +.img-right { + float: right; + margin-left: 1em; +}