Django-messages css styling
css django django-messages In Journal - Welcome!
If you’re using django-messages to show notifications to your users, here is a decent set of css styling to make it look good:
ul.messages { text-align: center; color: #000;border:1px solid #C8DCC2; margin:0 0; }
ul.messages li { background: none; padding-left: 5px; padding-top: 8px; padding-bottom: 8px;font-size: 1.2em; }
ul.messages li.debug{ background: #EEFAEA; padding: 0.5em, 0 0.5em 0; list-style: none;}
ul.messages li.info{ background: #EEFAEA; padding: 0.5em, 0 0.5em 0; list-style: none;}
ul.messages li.success{ background: #EEFAEA; padding: 0.5em, 0 0.5em 0; list-style: none;}
ul.messages li.warning{ background: #FF3333; padding: 0.5em, 0 0.5em 0; list-style: none;}
ul.messages li.error{ background: #FF3333; padding: 5px, 0 5px 0; list-style: none;}