﻿/**
 * EasySCP a Virtual Hosting Control Panel
 * Copyright (C) 2010-2017 by Easy Server Control Panel - http://www.easyscp.net
 *
 * This work is licensed under the Creative Commons Attribution-NoDerivs 3.0 Unported License.
 * To view a copy of this license, visit http://creativecommons.org/licenses/by-nd/3.0/.
 *
 * @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;
}