annotate user_photos/static/css/user_photos.css @ 964:51a2051588f5

Image uploading now expects a file. Refactor image uploading to not expect a Django UploadedFile and use a regular file instead. This will be needed for the future feature of being able to save and upload images from the Internet.
author Brian Neal <bgneal@gmail.com>
date Wed, 02 Sep 2015 20:50:08 -0500
parents 846cf9a06a04
children
rev   line source
bgneal@717 1 .user_photo {
bgneal@717 2 margin: 1em;
bgneal@717 3 display: inline-block;
bgneal@717 4 }
bgneal@717 5 .owner_photo {
bgneal@717 6 border: 1px solid gray;
bgneal@717 7 }
bgneal@717 8 .owner_photo img {
bgneal@717 9 margin: auto;
bgneal@717 10 width: 100%;
bgneal@717 11 }
bgneal@717 12 hr.footer_divider {
bgneal@717 13 margin-top: 1.5em;
bgneal@717 14 }