« MediaWiki:Common.css » : différence entre les versions
De DMS
Aucun résumé des modifications |
Aucun résumé des modifications |
||
Ligne 10 : | Ligne 10 : | ||
font-weight: 600; | font-weight: 600; | ||
} | |||
div#bodyContent p a | |||
div#bodyContent p a:before, div#bodyContent p a:after{ | |||
opacity: 0; | |||
transition: all 0.3s ease; | |||
font-size: 20px; | |||
} | |||
div#bodyContent p a:before{ | |||
content: '['; | |||
} | |||
div#bodyContent p a:after{ | |||
content: ']'; | |||
} | |||
div#bodyContent p a:hover:before{ | |||
margin-right: 10px; | |||
content: '['; | |||
-webkit-transform: translateX(20px); | |||
-moz-transform: translateX(20px); | |||
transform: translateX(20px); | |||
opacity: 1; | |||
} | |||
div#bodyContent p a:hover:after{ | |||
margin-left: 10px; | |||
content: ']'; | |||
-webkit-transform: translateX(-20px); | |||
-moz-transform: translateX(-20px); | |||
transform: translateX(-20px); | |||
opacity: 1; | |||
} | } |
Version du 3 décembre 2020 à 09:33
/* Le CSS placé ici sera appliqué à tous les habillages. */ p a: visited, p a, p a.external.text { color: red ; font-weight: 400; font-size: 1.1em; } p a:hover { text-decoration: none; font-weight: 600; } div#bodyContent p a div#bodyContent p a:before, div#bodyContent p a:after{ opacity: 0; transition: all 0.3s ease; font-size: 20px; } div#bodyContent p a:before{ content: '['; } div#bodyContent p a:after{ content: ']'; } div#bodyContent p a:hover:before{ margin-right: 10px; content: '['; -webkit-transform: translateX(20px); -moz-transform: translateX(20px); transform: translateX(20px); opacity: 1; } div#bodyContent p a:hover:after{ margin-left: 10px; content: ']'; -webkit-transform: translateX(-20px); -moz-transform: translateX(-20px); transform: translateX(-20px); opacity: 1; }