@keyframes float {
from {margin-top:5px;}
to {margin-top:-5px;}
}
@-o-keyframes float {
from {margin-top:5px;}
to {margin-top:-5px;}
}
@-ms-keyframes float {
from {margin-top:5px;}
to {margin-top:-5px;}
}
@-moz-keyframes float {
from {margin-top:5px;}
to {margin-top:-5px;}
}
@-webkit-keyframes float {
from {margin-top:5px;}
to {margin-top:-5px;}
}
#mugshot {
animation:float alternate-reverse 2s infinite;
-o-animation:float alternate-reverse 2s infinite;
-ms-animation:float alternate-reverse 2s infinite;
-moz-animation:float alternate-reverse 2s infinite;
-webkit-animation:float alternate-reverse 2s infinite;
}
#navbar a {
animation:float alternate 2s infinite;
-o-animation:float alternate 2s infinite;
-ms-animation:float alternate-reverse 2s infinite;
-moz-animation:float alternate 2s infinite;
-webkit-animation:float alternate 2s infinite;
}