Resource icon

Breathing Sign Up Button

Hey @Lone Wolf this is the Breathing spoiler button:

vPyO4CZ.gif

in extra.css:

Code:
/* SPOILER BUTTON*/
.bbCodeSpoilerButton {
border: 1px solid #fff;
color: #fff;
margin: 10px 10px;
-webkit-animation-name: redPulse;
-webkit-animation-duration: 2s;
-webkit-animation-iteration-count: infinite;
-moz-animation-name: redPulse;
-moz-animation-duration: 2s;
-moz-animation-iteration-count: infinite;
-o-animation-name: redPulse;
-o-animation-duration: 2s;
-o-animation-iteration-count: infinite;
animation-name: redPulse;
animation-duration: 2s;
animation-iteration-count: infinite;
background: none repeat scroll 0% 0% #750606 !important;
}

.bbCodeSpoilerButton:hover {
color: #fff;
background: #c40000!important;
text-decoration: none;
-webkit-animation: none;
animation: none;
}
/* END SPOILER BUTTON*/
 
Sorry. But I guess that using this method in the node icons is not "the best way" to customise it.
that works with css sprites.
Anyway, I guess node icons "breathing"... and everything "breathing" is quite annoying to the eyes. (just my opinion xdd)
 
Yeah you're right @rafass

If one item is breathing on the screen on some pages then it draws attention to it, if several are breathing on most pages then it becomes normal.
 
Hey @Lone Wolf this is the Breathing spoiler button:

vPyO4CZ.gif

in extra.css:

Code:
/* SPOILER BUTTON*/
.bbCodeSpoilerButton {
border: 1px solid #fff;
color: #fff;
margin: 10px 10px;
-webkit-animation-name: redPulse;
-webkit-animation-duration: 2s;
-webkit-animation-iteration-count: infinite;
-moz-animation-name: redPulse;
-moz-animation-duration: 2s;
-moz-animation-iteration-count: infinite;
-o-animation-name: redPulse;
-o-animation-duration: 2s;
-o-animation-iteration-count: infinite;
animation-name: redPulse;
animation-duration: 2s;
animation-iteration-count: infinite;
background: none repeat scroll 0% 0% #750606 !important;
}

.bbCodeSpoilerButton:hover {
color: #fff;
background: #c40000!important;
text-decoration: none;
-webkit-animation: none;
animation: none;
}
/* END SPOILER BUTTON*/


I did this to my spoiler and it changed the look nicely :) however mine doesn't" breathe" or glow :(
 
Top Bottom