Benutzer:NaN&bricks/common.css: Unterschied zwischen den Versionen

Aus ConanWiki
Zur Navigation springen Zur Suche springen
Inhalt hinzugefügt Inhalt gelöscht
K (Fehlerbehebung)
Markierungen: Mobile Bearbeitung Mobile Web-Bearbeitung Erweiterte mobile Bearbeitung
K (ausprobieren)
Markierungen: Mobile Bearbeitung Mobile Web-Bearbeitung Erweiterte mobile Bearbeitung
 
(Eine dazwischenliegende Version desselben Benutzers wird nicht angezeigt)
Zeile 3: Zeile 3:
 
}
 
}
 
@media screen and (max-width: 40em) {
 
@media screen and (max-width: 40em) {
  +
div[style*=clear] {
  +
clear: none;
  +
width: 100%;
  +
}
 
div:has(div[style^=float]) {
 
div:has(div[style^=float]) {
 
display: flex;
 
display: flex;
Zeile 9: Zeile 13:
 
div[style*=float] {
 
div[style*=float] {
 
width: 100%;
 
width: 100%;
  +
float: none;
 
}
 
}
 
div[style*=float] div{
 
div[style*=float] div{

Aktuelle Version vom 22. November 2024, 11:49 Uhr

a:visited {
    color: orange;
}
@media screen and (max-width: 40em) {
    div[style*=clear] {
        clear: none;
        width: 100%;
    }
    div:has(div[style^=float]) {
        display: flex;
        flex-direction: column;
    }
    div[style*=float] {
        width: 100%;
        float: none;
    }
    div[style*=float] div{
        width: 100%;
    }
}