Zeile 1: | Zeile 1: | ||
+ | |||
+ | /* Desktop */ | ||
+ | @media screen and (min-width: 992px) { | ||
+ | .hinweisbox { color: black; } | ||
+ | } | ||
+ | |||
+ | /* Small Devices */ | ||
+ | @media screen and (min-width: 481px) and (max-width: 991px) { | ||
.hinweisbox { color: green; } | .hinweisbox { color: green; } | ||
+ | } | ||
+ | |||
+ | /* Portrait Phones */ | ||
+ | @media (max-width: 480px) { | ||
+ | .hinweisbox { color: blue; } | ||
+ | } | ||
+ | |||
+ | |||
+ | /* Print and PDF Export */ | ||
+ | @media print { | ||
+ | .hinweisbox { color: red; } | ||
+ | } |
Version vom 18. Oktober 2020, 14:54 Uhr
/* Desktop */ @media screen and (min-width: 992px) { .hinweisbox { color: black; } } /* Small Devices */ @media screen and (min-width: 481px) and (max-width: 991px) { .hinweisbox { color: green; } } /* Portrait Phones */ @media (max-width: 480px) { .hinweisbox { color: blue; } } /* Print and PDF Export */ @media print { .hinweisbox { color: red; } }