﻿/*
*  Notify Bar - jQuery plugin
*
*  Copyright (c) 2009-2010 Dmitri Smirnov
*
*  Licensed under the MIT license:
*  http://www.opensource.org/licenses/mit-license.php
*  
*  Version: 1.2
*
*  Project home:
*  http://www.dmitri.me/blog/notify-bar
*/

.jquery-notify-bar {
  width:100%;
  position:fixed;
  top:0;
  left:0;
  margin:0px;
  z-index:99999;
  background:#500 url(../images/notifystripe.png) repeat top left;
  font-size:0.9em;
  color:#000;
  text-align:center;
  font-family: Arial, Verdana, sans-serif;
  padding:20px 40px;
  border:double 3px solid #500;
  display:none;
  opacity:0.9;
}

.jquery-notify-bar.error {
  background-color:#500;
  font-size:0.7em;
  color:#a00;
}

.jquery-notify-bar.error ul
{
    display:inline-block;
    width:200px;
    text-align:left;
    white-space:nowrap;
}


.jquery-notify-bar.success {
  color:#060;
  background-color:#BBFFB6;
}