/* Eine CSS Datei, die standart Formatierungen kennt */


.highlight
{
    background-color: #ffe66d;
    padding: 4px 8px;
    border-radius: 6px;
}

/* Versteck ein Element auf dem Bildschirm, falls die Mobil Ansicht aktiv ist */
@media (max-width: 767px)
{
    .mobile-hide
    {
        display: none;
    }
}

/* Versteck Elemente auf dem Bildschirm, falls die Desktop Ansicht aktiv ist */
@media (min-width: 768px) {
    .desktop-hide {
        display: none;
    }
}

