« MediaWiki:Common.css » : différence entre les versions
De 21Wiki
(Page créée avec « →Le CSS placé ici sera appliqué à tous les habillages. : *{ font-family:initial !important; } .mw-parser-output a.external, .link-httpsttp{ background: none !impor… ») |
Aucun résumé des modifications Balise : Révoqué |
||
Ligne 18 : | Ligne 18 : | ||
background-size: contain; | background-size: contain; | ||
} | } | ||
a.external{ | |||
text-decoration: none; | |||
background-image: linear-gradient(red, red); | |||
background-repeat: no-repeat; | |||
background-position: bottom left; | |||
background-size: 0 3px; | |||
transition: background-size 200ms ease-in-out; | |||
} | |||
a.external:visited:hover{ | |||
background-size: 100% 3px; | |||
color: inherit; | |||
} |
Version du 29 août 2021 à 15:59
/* Le CSS placé ici sera appliqué à tous les habillages. */
*{
font-family:initial !important;
}
.mw-parser-output a.external, .link-httpsttp{
background: none !important;
padding: 0 !important;
}
li{
list-style-type: none;
}
.mw-wiki-logo.fallback{
content: '';
width: 11em;
height: 11em;
background-repeat: no-repeat;
background-position: center center;
background-size: contain;
}
a.external{
text-decoration: none;
background-image: linear-gradient(red, red);
background-repeat: no-repeat;
background-position: bottom left;
background-size: 0 3px;
transition: background-size 200ms ease-in-out;
}
a.external:visited:hover{
background-size: 100% 3px;
color: inherit;
}