Difference between revisions of "MediaWiki:Common.css"
From PTI Security Systems
Line 12: | Line 12: | ||
.answer { | .answer { | ||
+ | height:0; | ||
width:750px; | width:750px; | ||
border: 1px solid; | border: 1px solid; |
Revision as of 13:40, 4 September 2014
/* CSS placed here will be applied to all skins */ @-webkit-keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } } @keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } } .answer { height:0; width:750px; border: 1px solid; border-radius: 10px; padding: 0px 5px 0px 5px; margin: 1px; overflow: hidden; padding: 0 18px; -webkit-transition: all 1s ease; -moz-transition: all 1s ease; transition: all 1s ease; } .linkshow:target * .answer { display: block; -webkit-animation: fadeIn 1s; animation: fadeIn 1s; height: auto; padding: 24px 18px; } .linkhide:target * .answer {display: none;}