I want to add hover effect to the button
like when I hover it its change the background color to #63A244 and the text color to white - #FFFFFF . Thanks in advance.
window.addEventListener("load", function() {
window.cookieconsent.initialise({
"palette": {
"popup": {
"background": "#ffffff",
"text": "#63a244"
},
"button": {
"background": "transparent",
"text": "#63a244",
"border": "#63a244"
}
},
"position": "top",
"content": {
"message": "Cookies Massage",
"dismiss": "OK",
"link": "Read More",
"href": "#"
}
})
});
<script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.js"></script>
<!DOCTYPE html>
<html dir="rtl" lang="he">
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.css" />
</head>
</html>