Untitled

                Never    
CSS
       
.bouton{
    border: none;
    background-color: transparent;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: bold;
    vertical-align: middle;
    color: #333333;
    border-radius: 20px;
    padding: 0.6em 0.9em 0.6em 0.9em;
    display: inline-block;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.bouton:hover{
    background-color:#F0F0F0;
    color: #333333;

}

Raw Text