Zeile 6: | Zeile 6: | ||
/* Small Devices */ | /* Small Devices */ | ||
− | @media screen and (min-width: | + | @media screen and (min-width: 577px) and (max-width: 991px) { |
.hinweisbox { color: green; } | .hinweisbox { color: green; } | ||
} | } | ||
/* Portrait Phones */ | /* Portrait Phones */ | ||
− | @media (max-width: | + | @media (max-width: 576px) { |
.hinweisbox { color: blue; } | .hinweisbox { color: blue; } | ||
} | } |
Version vom 18. Oktober 2020, 14:56 Uhr
/* 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; } }