After making changes to the bootstrap css class of the button such as the color, font size, and font color, I noticed that when I click and hold the mouse on the button, the color changes.
Even though I set the color to green, when I click and hold the mouse, it turns blue instead.
Below is the CSS code for the button:
.btn-outline-primary{
width: 220px;
background: #A4D555; /*2cc8df*/
border: none;
color: white;
font-weight:450;
}
.btn-outline-primary:hover{
background: #A4D555;
outline: none;
box-shadow: none;
}
.btn-outline-primary:focus{
background: #A4D555;
outline: none;
box-shadow: none;
}
.btn-outline-primary:active{
background: #A4D555;
outline: none;
box-shadow: none;
}