I am currently utilizing VScode and attempting to modify the link color on :hover
. I am also interested in adding a grow Hover Effect. Here is my code snippet:
.subareas a.link {
margin: 0 0 10px 10px;
float: right;
height: 30px;
line-height: 29px;
min-width: 117px;
text-align: center;
display: inline-block;
border: 1px solid #61397f;
color: #61397f;
border-radius: 5px;
padding: 0 5px;
}
.subareas :hover {
background-color: #9D3B76;
color: white;
}
<div class="subareas">
<a id="WestGalil" class="link" href="WestGalil">WestGalil</a>
<a id="UpperGalilee" class="link" href="UpperGalileer">UpperGalileer</a>
<a id="lowerGalilee" class="link" href="lowerGalilee">lowerGalilee</a>
<a id="ZikhronYaakov" class="link" href="ZikhronYaakov">ZikhronYaakov</a>
</div>