MediaWiki:Global.css: Skillnad mellan sidversioner

Från Sockipedia
Innehåll som raderades Innehåll som lades till
Ingen redigeringssammanfattning
Märke: Manuell återställning
Ingen redigeringssammanfattning
Rad 7: Rad 7:
.test_orange {
.test_orange {
color: orange;
color: orange;
}

body {
outline: 4px solid red;
}

@media screen and (max-width: 768px) {
body {
outline: 4px solid lime;
}
}
}

Versionen från 25 juli 2026 kl. 19.34

.test_blå {
  color: blue;
}
.test_röd {
  color: red;
}
.test_orange {
  color: orange;
}

body {
    outline: 4px solid red;
}

@media screen and (max-width: 768px) {
    body {
        outline: 4px solid lime;
    }
}