styles.css

Aus Infopedia
Wechseln zu:Navigation, Suche
K
K
Zeile 50: Zeile 50:
 
.randnotiz {
 
.randnotiz {
 
   position: absolute;
 
   position: absolute;
   right: 0;
+
   right: 10%;
 
   width: 1rem;
 
   width: 1rem;
 
}
 
}
 
}
 
}

Version vom 20. November 2020, 10:19 Uhr

/* Allgemein */
.randnotiz {
  border-top: solid 0.5rem #aaa;
  padding-top: 0.1rem;
  padding-right: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.5rem;
  margin-top: 0.75rem;
}

.randnotiz-icon {
  float: left;
  font-size: 1rem;
  margin-top: 0;
  margin-right: 0.75rem;
  padding: 0;
  border: 0;
  color: #aaa;
  text-align: right;
}

.wichtig {
  border-color: #b51f1f;
}

.wichtig i {
  color: #b51f1f;
}

/* Desktop */
@media screen and (min-width: 576px) {
.randnotiz-icon {
  font-size: 2rem;
  position: absolute;
  left: -3rem;
  top: -1.8rem;
}
}

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

/* Print */
@media print {
.randnotiz {
  position: absolute;
  right: 10%;
  width: 1rem;
}
}