﻿/**
 * EasySCP a Virtual Hosting Control Panel
 * Copyright (C) 2010-2012 by Easy Server Control Panel - http://www.easyscp.net
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 *
 * @link 		http://www.easyscp.net
 * @author 		EasySCP Team
 */

@CHARSET "UTF-8";

.error, .info, .success, .warning {
	background-position: 10px center;
	background-repeat: no-repeat;
	border: 1px solid;
	border-radius: 8px;
	margin: 10px 20px;
	padding: 15px 10px 15px 50px;
	text-align: left;
}

.error {
	background-color: #fdbfad;
	background-image: url(../images/messages/error.png);
	border-color: #ca1d11;
	color: #ca1d11;
}

.info {
	background-color: #b0def5;
	background-image: url(../images/messages/info.png);
	border-color: #0f3d87;
	color: #0f3d87;
}

.success {
	color: #3d7a15;
	border-color: #3d7a15;
	background-color: #d6f1b3;
	background-image: url(../images/messages/success.png);
}

.warning {
	background-color: #ffec9c;
	background-image: url(../images/messages/warning.png);
	border-color: #954a00;
	color: #954a00;
}