/*------------------------------------------------------------------
MESSAGE.LESS

Div's with different background's to show different messages.
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
CONFIG.LESS

Contains variables for rules which are applied more than once.
Variables which are only needed in one file are kept in that file.
Almost every .less file imports this file and mixins.less

Uses a few lessCSS color funtions.
More info: http://lesscss.org/
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
MIXINS.LESS

Contains frequently used rules and helpers for prefixing.
Mixins which are only needed in one file are kept in that file.
Almost every .less file imports this file and config.less

More info: http://lesscss.org/
-------------------------------------------------------------------*/
.msg {
    padding: 10px;
    margin-bottom: 15px;
    border-left: solid 5px #000;
    background: #f2f2f2;
}

.msg-error {
    border-color: #bf000b;
    background: #ffeded;
}

.msg-warning {
    border-color: #d49418;
    background: #fffae5;
}

.msg-success {
    border-color: #42730d;
    background: #f4fbe9;
}

.msg-info {
    border-color: #004581;
    background: #ebf7fd;
}
