/*
    Useful classes for text layout
*/

/* Notifications */
.notification                                                                   { font-family: "Raleway"; }
.notification.danger                                                            { color: red !important; }
.notification.error                                                             { color: red !important; }
.notification.warning                                                           { color: orange !important; }
.notification.default                                                           { color: black !important; }
.notification.success                                                           { color: green !important; }

ul                                                                              { font-family: "Raleway"; }

.centered-text { text-align: center; }

.default-page-link
{
    font-weight: bold; 
    text-decoration: none; 
    color: #4CAF50;
    transition: 0.5s color;
    -webkit-transition: 0.5s color;
    -moz-transition: 0.5s color;
    -ms-transition: 0.5s color;
    -o-transition: 0.5s color;
}

.default-page-link:hover
{
    color: darkgreen;
}

.label-roleslug
{
    font-family: "Arial";
    font-weight: bold;
    font-size: 90%;
    cursor: inherit;
    padding: 1%;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}

.label-roleslug.user
{
    background: green;
    color: white;
    box-shadow: 0 0 2.5px green;
    -webkit-box-shadow: 0 0 2.5px green;
    -moz-box-shadow: 0 0 2.5px green;
}

.label-roleslug.manager
{
    background: red;
    color: white;
    box-shadow: 0 0 2.5px red;
    -webkit-box-shadow: 0 0 2.5px red;
    -moz-box-shadow: 0 0 2.5px red;
}

.label-roleslug.webmaster
{
    background: purple;
    color: white;
    box-shadow: 0 0 2.5px purple;
    -webkit-box-shadow: 0 0 2.5px purple;
    -moz-box-shadow: 0 0 2.5px purple;
}

/*
    MANAGEMENT DETAILS BUTTONS
*/
.management-details-link
{
    color: inherit;
    text-decoration: none;
    color: green;
    font-weight: bold;
    transition: 0.25s color;
    -webkit-transition: 0.25s color;
    -moz-transition: 0.25s color;
    -ms-transition: 0.25s color;
    -o-transition: 0.25s color;
}

.management-details-link:hover
{
    color: darkgreen;
}

/*
    Stock crap
*/
h1
{ 
    font-family: "Brush Script Std"; 
    line-height: 1.0em;
    font-size: 300%; 
} 

h2, h3, h4, h5, h6
{
    font-family: "Raleway";
    line-height: 1.0em;
}