styles.css

Aus Infopedia
Wechseln zu:Navigation, Suche

/* Desktop */
@media screen and (min-width: 992px) {
.hinweisbox { color: black; }
}

/* Small Devices */
@media screen and (min-width: 577px) and (max-width: 991px) {
.hinweisbox { color: green; }
}

/* Portrait Phones */
@media (max-width: 576px) {
.hinweisbox { color: blue; }
}


/* Print and PDF Export */
@media print {
.hinweisbox { color: red; }
}