What is the correct way to change the color of a button ? My button :
<button id="easy_mode" href="#gameZone" class="btn waves-effect waves-light spacing theme-color" >
Theme color:
.theme-color {
background-color: #ee6e73;
}
.theme-color:hover {
background-color: #F18B8F;
}
the button loses the color after it has been clicked. What am i missing ?
It seems to be working fine. I'm guessing you made a small PEBKAC mistake somewhere. Might want to check your HTML and CSS real quick to see if there are no typos anywhere.