I'm currently facing an issue with my script. In the section designated for avatars - images, I am attempting to change the border color upon hovering over the image, however, it doesn't seem to be working as expected.
img {
margin-right:15px;
float: left;
width:68px;
height: 68px;
.bdr(40px);
border:5px solid #eeeeee;
}
img:hover {
-webkit-animation: avatarAnimation 1s;
-moz-animation: avatarAnimation 1s;
-o-animation: avatarAnimation 1s;
animation: avatarAnimation 1s;
}
@keyframes avatarAnimation {
25% {
background: red;
}
50% {
border-color: #f27935;
}
75% {
border-color: #1fbba6;
}
}