K |
K |
||
Zeile 1: | Zeile 1: | ||
− | /* | + | /* Screen */ |
+ | @media screen { | ||
p.strong-p { | p.strong-p { | ||
background-color: #b51f1f; | background-color: #b51f1f; | ||
Zeile 27: | Zeile 28: | ||
color: #b51f1f; | color: #b51f1f; | ||
font-weight: bold; | font-weight: bold; | ||
+ | } | ||
+ | } | ||
+ | |||
+ | |||
+ | /* Print */ | ||
+ | @media print { | ||
+ | p.strong-p { | ||
+ | border: 0.1rem solid #b51f1f; | ||
+ | } | ||
+ | p.strong-p.biber { | ||
+ | border: #AD7E42; | ||
+ | } | ||
+ | |||
+ | p.strong-p.wiwo { | ||
+ | border: #F7E400; | ||
+ | } | ||
+ | |||
+ | p.strong-p.gusp { | ||
+ | border: #009960; | ||
+ | } | ||
+ | |||
+ | p.strong-p.caex { | ||
+ | border: #353990; | ||
+ | } | ||
+ | |||
+ | p.strong-p.raro { | ||
+ | border: #CE0026; | ||
+ | } | ||
} | } |
Version vom 20. November 2020, 09:24 Uhr
/* Screen */ @media screen { p.strong-p { background-color: #b51f1f; } p.strong-p.biber { background-color: #AD7E42; } p.strong-p.wiwo { background-color: #F7E400; } p.strong-p.gusp { background-color: #009960; } p.strong-p.caex { background-color: #353990; color: white; } p.strong-p.raro { background-color: #CE0026; } span.strong-c { color: #b51f1f; font-weight: bold; } } /* Print */ @media print { p.strong-p { border: 0.1rem solid #b51f1f; } p.strong-p.biber { border: #AD7E42; } p.strong-p.wiwo { border: #F7E400; } p.strong-p.gusp { border: #009960; } p.strong-p.caex { border: #353990; } p.strong-p.raro { border: #CE0026; } }