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 (Fehlerbehebung)
Markierungen: Mobile Bearbeitung Mobile Web-Bearbeitung Erweiterte mobile Bearbeitung
Zeile 3: Zeile 3:
 
}
 
}
 
@media screen and (max-width: 40em) {
 
@media screen and (max-width: 40em) {
  +
div[style*=clear] {
  +
clear: none;
  +
}
 
div:has(div[style^=float]) {
 
div:has(div[style^=float]) {
 
display: flex;
 
display: flex;
Zeile 9: Zeile 12:
 
div[style*=float] {
 
div[style*=float] {
 
width: 100%;
 
width: 100%;
  +
float: none;
 
}
 
}
 
div[style*=float] div{
 
div[style*=float] div{

Version vom 22. November 2024, 11:41 Uhr

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