styles.css

Aus Infopedia
Wechseln zu:Navigation, Suche
K
K
Zeile 4: Zeile 4:
 
}
 
}
 
p.strong-p.biber {
 
p.strong-p.biber {
   border: 0.1rem solid #AD7E42;
+
   border: 0.1rem solid #ad7e42;
 
}
 
}
  
 
p.strong-p.wiwo {
 
p.strong-p.wiwo {
   border: 0.1rem solid #F7E400;
+
   border: 0.1rem solid #f7e400;
 
}
 
}
  
Zeile 20: Zeile 20:
  
 
p.strong-p.raro {
 
p.strong-p.raro {
   border: 0.1rem solid #CE0026;
+
   border: 0.1rem solid #ce0026;
 
}
 
}
  
 
span.strong-c {
 
span.strong-c {
   color: rgba(181, 31, 31, 1);
+
   color: #b51f1f;
 
   font-weight: bold;
 
   font-weight: bold;
 
}
 
}
  
 
span.strong-c.biber {
 
span.strong-c.biber {
   color: rgba(173, 126, 66, 1);
+
   color: #ad7e42;
 
}
 
}
  
 
span.strong-c.wiwo {
 
span.strong-c.wiwo {
   color: rgba(247, 228, 0, 1);
+
   color: #f7e400;
 
}
 
}
  
 
span.strong-c.gusp {
 
span.strong-c.gusp {
   color: rgba(0, 153, 96, 1);
+
   color: #009960;
 
}
 
}
  
 
span.strong-c.caex {
 
span.strong-c.caex {
   color: rgba(53, 57, 144, 1);
+
   color: #353990;
 
}
 
}
  
 
span.strong-c.raro {
 
span.strong-c.raro {
   color: rgba(206, 0, 38, 1);
+
   color: #ce0026;
 
}
 
}
  
Zeile 51: Zeile 51:
 
@media screen {
 
@media screen {
 
p.strong-p {
 
p.strong-p {
   background-color: rgba(181, 31, 31, 0.2);
+
   background-color: rgba(181, 31, 31, 0.3);
 
}
 
}
  
 
p.strong-p.biber {
 
p.strong-p.biber {
   background-color: rgba(173, 126, 66, 0.2);
+
   background-color: rgba(173, 126, 66, 0.3);
 
}
 
}
  
 
p.strong-p.wiwo {
 
p.strong-p.wiwo {
   background-color: rgba(247, 228, 0, 0.2);
+
   background-color: rgba(247, 228, 0, 0.3);
 
}
 
}
  
 
p.strong-p.gusp {
 
p.strong-p.gusp {
   background-color: rgba(0, 153, 96, 0.2);
+
   background-color: rgba(0, 153, 96, 0.3);
 
}
 
}
  
 
p.strong-p.caex {
 
p.strong-p.caex {
   background-color: rgba(53, 57, 144, 0.2);
+
   background-color: rgba(53, 57, 144, 0.3);
 
}
 
}
  
 
p.strong-p.raro {
 
p.strong-p.raro {
   background-color: rgba(206, 0, 38, 0.2);
+
   background-color: rgba(206, 0, 38, 0.3);
 
}
 
}
 
}
 
}

Version vom 27. November 2020, 09:56 Uhr

/* Allgemein */
p.strong-p {
  border: 0.1rem solid #b51f1f;
}
p.strong-p.biber {
  border: 0.1rem solid #ad7e42;
}

p.strong-p.wiwo {
  border: 0.1rem solid #f7e400;
}

p.strong-p.gusp {
  border: 0.1rem solid #009960;
}

p.strong-p.caex {
  border: 0.1rem solid #353990;
}

p.strong-p.raro {
  border: 0.1rem solid #ce0026;
}

span.strong-c {
  color: #b51f1f;
  font-weight: bold;
}

span.strong-c.biber {
  color: #ad7e42;
}

span.strong-c.wiwo {
  color: #f7e400;
}

span.strong-c.gusp {
  color: #009960;
}

span.strong-c.caex {
  color: #353990;
}

span.strong-c.raro {
  color: #ce0026;
}

/* Screen */
@media screen {
p.strong-p {
  background-color: rgba(181, 31, 31, 0.3);
}

p.strong-p.biber {
  background-color: rgba(173, 126, 66, 0.3);
}

p.strong-p.wiwo {
  background-color: rgba(247, 228, 0, 0.3);
}

p.strong-p.gusp {
  background-color: rgba(0, 153, 96, 0.3);
}

p.strong-p.caex {
  background-color: rgba(53, 57, 144, 0.3);
}

p.strong-p.raro {
  background-color: rgba(206, 0, 38, 0.3);
}
}


/* Print */
@media print {

}