@keyframes toRight {
from {
transform: translate3d(-300px, 0 , 0)
}
to {
transform: none;
}
}
.text {
animation: toRight 1s ease;
}
.element {
padding: 30px;
background: #eee;
position: relative;
&:after {
position: absolute;
content:"";
width: 0;
height: 2px;
background: red;
bottom: 0;
right: 0;
left: 0;
transition: all .5s;
}
&:hover {
&:after {
width: 100%;
}
}
}