styles.css

Aus Infopedia
Wechseln zu:Navigation, Suche
Zeile 2: Zeile 2:
 
/* Desktop */
 
/* Desktop */
 
@media screen and (min-width: 992px) {
 
@media screen and (min-width: 992px) {
.hinweisbox { color: black; }
+
.randnotiz {
 +
  position: absolute;
 +
  right: 200px;
 +
  width: 200px;
 
}
 
}
 
/* Small Devices */
 
@media screen and (min-width: 577px) and (max-width: 991px) {
 
.hinweisbox { color: green; }
 
}
 
 
/* Portrait Phones */
 
@media (max-width: 576px) {
 
.hinweisbox { color: blue; }
 
}
 
 
 
/* Print and PDF Export */
 
@media print {
 
.hinweisbox { color: red; }
 
 
}
 
}

Version vom 17. November 2020, 14:45 Uhr


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