Difference between revisions of "MediaWiki:Common.css"

From PTI Security Systems
Jump to: navigation, search
m
m
Line 1: Line 1:
 
/* CSS placed here will be applied to all skins */
 
/* CSS placed here will be applied to all skins */
  
#AAMCTS11 {display: none;}
+
@-webkit-keyframes fadeIn {
 +
    from { opacity: 0; }
 +
      to { opacity: 1; }
 +
}
 +
 
 +
@keyframes fadeIn {
 +
    from { opacity: 0; }
 +
      to { opacity: 1; }
 +
}
 +
 
 +
.answer {
 +
width:750px;
 +
border: 1px solid;
 +
border-radius: 10px;
 +
padding: 0px 5px 0px 5px;
 +
margin: 1px;
 +
}
 +
 
 +
#AAMCTS11 {
 +
display: none;
 +
}
  
 
#AAMCTS1:target ~ #AAMCTS11 {
 
#AAMCTS1:target ~ #AAMCTS11 {
display: block; width:750px; border: 1px solid; border-radius: 10px; padding: 0px 5px 0px 5px; margin: 1px;
+
display: block;
 +
-webkit-animation: fadeIn 1s;
 +
animation: fadeIn 1s;
 
}
 
}
  
 
#AAMCTS1111:target ~ #AAMCTS11 {display: none;}
 
#AAMCTS1111:target ~ #AAMCTS11 {display: none;}

Revision as of 09:53, 2 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 {
width:750px;
border: 1px solid;
border-radius: 10px;
padding: 0px 5px 0px 5px;
margin: 1px;
}

#AAMCTS11 {
display: none;
}

#AAMCTS1:target ~ #AAMCTS11 {
display: block;
-webkit-animation: fadeIn 1s;
animation: fadeIn 1s;
}

#AAMCTS1111:target ~ #AAMCTS11 {display: none;}