Difference between revisions of "MediaWiki:Common.css"

From Deep Blue Robotics Wiki
Jump to: navigation, search
Line 20: Line 20:
  
 
.glow {
 
.glow {
   -webkit-animation: glowingRed 1500ms infinite;
+
   -webkit-animation: glowingRed 500ms infinite;
   -moz-animation: glowingRed 1500ms infinite;
+
   -moz-animation: glowingRed 500ms infinite;
   -o-animation: glowingRed 1500ms infinite;
+
   -o-animation: glowingRed 500ms infinite;
   animation: glowingRed 1500ms infinite;
+
   animation: glowingRed 500ms infinite;
 
}
 
}

Revision as of 22:08, 3 November 2016

/* CSS placed here will be applied to all skins */

@-webkit-keyframes glowingRed {
  0% { background-color: #f9f9f9; -webkit-box-shadow: 0 0 3px #f9f9f9; }
  50% { background-color: #FF0000; -webkit-box-shadow: 0 0 40px #FF0000; }
  100% { background-color: #f9f9f9; -webkit-box-shadow: 0 0 3px #f9f9f9; }
}

@-moz-keyframes glowingRed {
  0% { background-color: #f9f9f9; -moz-box-shadow: 0 0 3px #f9f9f9; }
  50% { background-color: #FF0000; -moz-box-shadow: 0 0 40px #FF0000; }
  100% { background-color: #f9f9f9; -moz-box-shadow: 0 0 3px #f9f9f9; }
}

@-o-keyframes glowingRed {
  0% { background-color: #f9f9f9; box-shadow: 0 0 3px #f9f9f9; }
  50% { background-color: #FF0000; box-shadow: 0 0 40px #FF0000; }
  100% { background-color: #f9f9f9; box-shadow: 0 0 3px #f9f9f9; }
}

.glow {
  -webkit-animation: glowingRed 500ms infinite;
  -moz-animation: glowingRed 500ms infinite;
  -o-animation: glowingRed 500ms infinite;
  animation: glowingRed 500ms infinite;
}