add the image floats to the plain CSS

primarily it's the main page that just looks weird without it
This commit is contained in:
Brian S. Stephan 2022-03-24 22:28:09 -05:00
parent 63a764c6a0
commit 3cade4fe73
Signed by: bss
GPG Key ID: 3DE06D3180895FCB
1 changed files with 16 additions and 0 deletions

View File

@ -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;
}