I want the whole div to change from #555555 to #b13c19. It's a simple rounded corner div wrapped around a link. I cant seem to get it right. Here is what I have so far. Any help would be much appreciated.
HTML:
<div id="resume_btn">
<a href="Aalok_Resume.pdf"> Click Here to View My Resume </a>
</div>
CSS:
#resume_btn {
position: relative;
margin-top: 25px;
padding: 20px;
width: 220px;
height: 25px;
background-color: #555555;
background-repeat: no-repeat;
text-align:center;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
-ms-border-radius: 10px;
-0-border-radius: 10px;
border-radius: 10px;
}
#resume_btn a {
text-decoration: none;
color:white;
font-family: 'oswald', helvetica, arial, sans-serif;
font-size: 18px;
font-weight: 300;
}
I'm not sure where to put the "-moz-transition: background 1s ease-in;" etc...properties. I want the background to change color when i hover over the ilnk. I made it work for the background color of the link but it doesnt look good because the background only encompasses the wording and not the whole 230 x 25 area.