MediaWiki:Global.css: Skillnad mellan sidversioner

Från Sockipedia
Innehåll som raderades Innehåll som lades till
Ingen redigeringssammanfattning
Ingen redigeringssammanfattning
Rad 7: Rad 7:
.test_grön {
.test_grön {
color: green;
color: green;
}

/* Visas bara på dator */
.desktop-only {
display: block;
}

/* Visas bara på mobil */
.mobile-only {
display: none;
}

/* På smala skärmar (mobil) */
@media screen and (max-width: 768px) {

.desktop-only {
display: none;
}

.mobile-only {
display: block;
}

}
}

Versionen från 25 juli 2026 kl. 19.11

.test_blå {
  color: blue;
}
.test_röd {
  color: red;
}
.test_grön {
  color: green;
}