Add selectors for image alignment

This commit is contained in:
vimux 2018-05-26 22:31:06 +03:00
parent 1ebf95e4df
commit 4c35ebab3c
No known key found for this signature in database
GPG key ID: 5A34FDC4EE832E34

View file

@ -640,6 +640,7 @@ mark {
flex: 1 0 auto; flex: 1 0 auto;
margin: 0; margin: 0;
color: #c3c3c3; color: #c3c3c3;
overflow: auto;
} }
.post__content p:last-child { .post__content p:last-child {
@ -696,6 +697,16 @@ mark {
font-weight: 700; font-weight: 700;
} }
.alignleft {
float: left;
margin: 1rem 1rem 1rem 0;
}
.alignright {
float: right;
margin: 1rem 0 1rem 1rem;
}
.center { .center {
text-align: center; text-align: center;
} }