Good day, people. I have the following HTML code:
<li>
<a href="../navbar/" class="navbar-top user-color">
<span class="glyphicon glyphicon-user gly-user" aria-hidden="true"></span> ENTRAR</a>
</li>
And the following CSS code:
.gly-user {
border: 2px solid rgb(35, 220, 97);
padding: 0.6em;
border-radius: 25px;
margin-right: 8px;
color: #23DC61;
}
As I do, so that by hovering over the link, both the color of the icon and its border turn green and at the same time the word enter also turns green. Also, how do you remove the mouse, the two go back to the "normal state" (initial), the icon with the color and the white border and the text with the color white?
Thank you!