Pulse7
8/20/2017 - 9:58 AM

Button styles that matter active:focus style

Button styles that matter active:focus style

.button{
    background-color:  #5C4383 ;
    color: #eee;
}

.button:hover{
    background-color: #f0e;
    color: #eee;
}

.button:focus{
    background-color:  rgb(255, 16, 16) ;
    color: #eee;
}

.button:focus:active{
    background-color:  rgb(15, 15, 188) ;
    color: #eee;
}