MediaWiki:Global.css: Skillnad mellan sidversioner

Från Sockipedia
Innehåll som raderades Innehåll som lades till
Skapade sidan med 'a { text-decoration-line: underline; }'
 
Ingen redigeringssammanfattning
 
(16 mellanliggande sidversioner av samma användare visas inte)
Rad 1: Rad 1:
.test_blå {
a {
color: red;
text-decoration-line: underline;
}
.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;
}
}
}

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;
    }
}