/* $Id: messages.css,v 1.3 2009/08/12 08:37:42 johnalbin Exp $ */

/**
 * @file
 * Message Styling
 *
 * Sensible styling for Drupal's error/warning/status messages.
 */


div.messages,
div.info,
div.status,
div.warning,
div.error /* Important messages (status, warning, and error) for the user */ {
  background-color: #999;
  background-image: none;
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 13px;
  margin: 0 0 16px;
  min-height: 16px;
  padding: 16px 35px;
}

div.info /* Information messages */ {
    border-color: #bcdff1;
    background-color: #b0e1f6;
    color: #183a48;
}

div.status /* Normal priority messages */ {
    /* Drupal core uses background-color #220 */
    border-color: #d6e9c6;
    background-color: #c5f0b4;
    color: #1e3b1e;
}

div.warning,
tr.warning {
    /* Drupal core uses background-color #220 */
    border-color: #faebcc;
    background-color: #fcf2bd;
    color: #583d0e;
}

div.error,
tr.error {
    /* Drupal core uses background-color #220 */
    border-color: #ebccd1;
    background-color: #f2baba;
    color: #67100e;
}

div.messages ul {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
}
