MediaWiki:Common.css: Różnice pomiędzy wersjami
Z Almanach
(Utworzono nową stronę "→Umieszczony tutaj kod CSS zostanie zastosowany we wszystkich skórkach: →Badziewie dla addthis: div.atclear { display: none !important; }") |
mNie podano opisu zmian |
||
Linia 3: | Linia 3: | ||
/* Badziewie dla addthis */ | /* Badziewie dla addthis */ | ||
div.atclear { display: none !important; } | div.atclear { display: none !important; } | ||
/* CSS Hover Gallery for Mediawiki | |||
* | |||
* @author: Unknown | |||
* current version crafted together by [[User:Christharp]] from several CSS sites. For my website:[http://www.yellpedia.com/wiki/Main_Page Yellpedia] | |||
*/ | |||
.zoom_img img{ | |||
-moz-transition:-moz-transform 0.1s ease-in; | |||
-webkit-transition:-webkit-transform 0.1s ease-in; | |||
-o-transition:-o-transform 0.1s ease-in; | |||
transition:transform 0.1 ease-in; | |||
} | |||
.zoom_img img:hover{ | |||
-moz-transform:scale(2); | |||
-webkit-transform:scale(2); | |||
-o-transform:scale(2); | |||
transform:scale(2); | |||
} |
Wersja z 10:07, 27 maj 2018
/* Umieszczony tutaj kod CSS zostanie zastosowany we wszystkich skórkach */
/* Badziewie dla addthis */
div.atclear { display: none !important; }
/* CSS Hover Gallery for Mediawiki
*
* @author: Unknown
* current version crafted together by [[User:Christharp]] from several CSS sites. For my website:[http://www.yellpedia.com/wiki/Main_Page Yellpedia]
*/
.zoom_img img{
-moz-transition:-moz-transform 0.1s ease-in;
-webkit-transition:-webkit-transform 0.1s ease-in;
-o-transition:-o-transform 0.1s ease-in;
transition:transform 0.1 ease-in;
}
.zoom_img img:hover{
-moz-transform:scale(2);
-webkit-transform:scale(2);
-o-transform:scale(2);
transform:scale(2);
}