Hi,
If you want some more css styling, you can add this css code into your custimizer> extra css:
/* Cookie - Leiste */
#cookie-notice {
background: rgba(255, 255, 255, 0.9 ) !important; /*Hintergrundfarbe der Leiste*/
border-top-color: #444; /*Farbe des Rahmens - oben*/
border-top-style: solid; /*Rahmenart des Rahmens - oben*/
border-top-width: 4px; /*Dicke des Rahmens - oben*/
}
/* Cookie - Button */
#cookie-notice .button.wp-default {
background: #f29400; /*Hintergrundfarbe*/
border-color: #444; /*Rahmenfarbe*/
color: #fff; /*Schriftfarbe*/
text-shadow: 0 0px 0 #fff; /*deaktivierung des Schattens bei der Schrift*/
font-size: 13px; /*Schriftgr??e*/
border-radius: 6px 6px 6px 6px; /*Abrundung der Ecken*/
-webkit-box-shadow: 0 1px 5px rgba(0,0,0,0.6); /*Schatteneffekt rund um die Buttons*/
}
/* Cookie - Button - Hover Effekt */
#cookie-notice .button.wp-default:hover, #cookie-notice .button.wp-default:focus {
background: #fff;
border-color: #444;
color: #f29400;
}
I found it here:https://www.martinkrueber.com/css-anpassung-bei-cookie-notice/ and tested it myself, it works!
Just play with the different colors to your liking.
This: background: rgba(255, 255, 255, 0.9 ) the 0.9 at the end stands for transparancy. If you want less adjust to something like 0.5
Annie