/**
 * Styles for EditWarning extension
 *
 * This file is part of MediaWiki extension EditWarning
 *
 * @author Thomas David <ThomasDavid@gmx.de>
 * @addtogroup Extensions
 * @version 0.3.1
 * @copyright 2008 by Thomas David
 * @license GNU AGPL 3.0 or later
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as
 * published by the Free Software Foundation, either version 3 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 Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

div.edit-warning-note-wrapper,
div.edit-warning-warning-wrapper
{
    position: relative;
    left: -10px;
    padding: 10px;
}

.edit-warning-note,
.edit-warning-warning
{
    position: relative;
    width: auto;
    color: #ffffff;
    background: #006600;
    font-size: 14px;
	padding: 10px;
    margin: 0px;
	border: solid 1px #000000;
}

.edit-warning-warning
{
    background: #660000;
}

div.edit-warning-note-wrapper p,
div.edit-warning-warning-wrapper p
{
    margin: 5px 0px;
}

div.edit-warning-note-wrapper form,
div.edit-warning-warning-wrapper form
{
    margin-top: 15px;
}


