Estimados, tengo el siguiente estilo css para un boton aspx
pero por alguna razón no me toman las acciones, es decir, el hover
.btn{
background: #3dca05;
color: #FFFFFF;
font-size: 10px;
font-weight: bold;
text-decoration: none;
text-transform:uppercase;
font-family: Arial,Helvetica,sans-serif;
border-bottom-color:#278004;
border-left-color:#afe998;
border-right-color:#278004;
border-top-color:#afe998;
border-width:1px;
height:24px;
}
.btn:hover{
background: #5bfa1f;
color: #336600;
font-size: 10px;
font-weight: bold;
text-decoration: none;
text-transform:uppercase;
font-family: Arial,Helvetica,sans-serif;
border-bottom-color:#278004;
border-left-color:#afe998;
border-right-color:#278004;
border-top-color:#afe998;
border-width:1px;
height:24px;
}
el botón está como sigue
<asp:Button ID="btnCrear" runat="server" CssClass="btn" Text="Depositar" />
alguien tiene idea de que pueda pasar??