styles.css

Aus Infopedia
Wechseln zu:Navigation, Suche
K
K
Zeile 13: Zeile 13:
 
   position: absolute;
 
   position: absolute;
 
   height: 2rem;
 
   height: 2rem;
   right: -1rem;
+
   left: -1rem;
 
   top: -1rem;
 
   top: -1rem;
 
   color: #b51f1f;
 
   color: #b51f1f;

Version vom 18. November 2020, 09:58 Uhr

.randnotiz {
  border-top: solid 0.5rem #888;
}

.wichtig {
  border-color: #b51f1f;
}

.wichtig::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f06a";
  position: absolute;
  height: 2rem;
  left: -1rem;
  top: -1rem;
  color: #b51f1f;
}

/* Desktop */
@media screen and (min-width: 1550px) {
.randnotiz {
  position: absolute;
  right: -200px;
  width: 250px;
}
}