/**
 * Datenbank-Felder nach der Pinnwand-Vorlage von Matthias Reike:
 * @package    datapreset_pinnwand
 * @copyright  2021 Matthias Reike
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
 * https://github.com/matthiasrke/
*/

/* Alignment of add entry button. */
.mdl-align {
    text-align: left;
}

/* Eintrag hinzufügen (hellgrün) */
.nav-tabs .nav-item a[href*="edit"] {
    color: #fff;
    background: #28a745;
    border-color: #28a745;
}
.nav-tabs .nav-item a[href*="edit"]:hover {
    background: #218838;
    border-color: #1e7e34;
}
.nav-tabs .nav-item a[href*="edit"]:focus {
    box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .5);
}
.nav-tabs .nav-item a[href*="edit"]::before {
    font-family: "FontAwesome";
    font-weight: 900;
    content: "\f067";
    margin-right: .5rem;
}

/* Farben für das Genre */
.Rot {
    background: #ffcdd2;
}
.Orange {
    background: #ffe0b2;
}
.Gelb {
    background: #fff9c4;
}
.Grün {
    background: #c8e6c9;
}
.Blau {
    background: #bbdefb;
}
.Grau {
    background: #cfd8dc;
}

