/* load the default Redmine stylesheet */
@import url(../../../stylesheets/application.css);

/* modify top-menu background color */
#top-menu {
    background: green;
    margin-bottom: 1px;
}

#main-menu {
    background: green;
}

/* add a logo in the header */
#header {
    background: linear-gradient(to right, green, white, white);
    background-image: url(../images/logo.png), linear-gradient(to right, green, white, white);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
/* login-form */
#login-form {
    border: 1px solid #20b353;
    background-color: white;
}

/* nodata */
.nodata, .warning {
    text-align: center;
    background-color: #03a103;
    border-color: white;
    color: white;
}

div.issue {
    background: #e0ffe3;
}
