MediaWiki:Global.css: Skillnad mellan sidversioner

Från Sockipedia
Innehåll som raderades Innehåll som lades till
Ingen redigeringssammanfattning
Märke: Återställd
Ingen redigeringssammanfattning
 
(10 mellanliggande sidversioner av samma användare visas inte)
Rad 1: Rad 1:
.test_blå {
.test_blå {
color: blue;
color: red;
}
}
.test_röd {
.test_röd {
color: red;
color: blue;
}
}
test_orange {

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


body {
/* Visas bara på mobil */
outline: 4px solid red;
.mobile-only {
display: none;
}
}


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

outline: 4px solid lime;
.desktop-only {
display: none;
}
}

.mobile-only {
display: block;
}

}
}

Nuvarande version från 26 juli 2026 kl. 08.32

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

body {
    outline: 4px solid red;
}

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