styles.css

Aus Infopedia
Wechseln zu:Navigation, Suche
(Die Seite wurde neu angelegt: „ →‎Desktop: @media screen and (min-width: 1550px) { .blockquote::first-letter { font-weight: bold; font-size: 2rem; color: red; } }“)
 
Zeile 2: Zeile 2:
 
/* Desktop */
 
/* Desktop */
 
@media screen and (min-width: 1550px) {
 
@media screen and (min-width: 1550px) {
.blockquote::first-letter {
+
.blockquote p::first-letter {
 
   font-weight: bold;
 
   font-weight: bold;
 
   font-size: 2rem;
 
   font-size: 2rem;

Version vom 17. November 2020, 16:37 Uhr


/* Desktop */
@media screen and (min-width: 1550px) {
.blockquote p::first-letter {
  font-weight: bold;
  font-size: 2rem;
  color: red;
}
}