Hi @mariesophie
I’m using this CSS for the different buttons:
/* Akzeptieren – Button */
#cn-accept-cookie {
background: #FE005A; /*Hintergrundfarbe*/
color: #fff; /*Schriftfarbe*/
font-size: 14px; /*Schriftgröße*/
font-family: Poppins; /* Schriftart */
line-height: 1.2; /* Zeilenhöhe */
padding: 1.1em 2.2em; /* Abstand zum Rand */
border-radius: 4em; /*Abrundung der Ecken*/
-webkit-box-shadow: 0 0.2em 0.4em rgba(0,0,0,0.2); /*Schatteneffekt rund um die Buttons*/
}
/* Ablehnen – Button */
#cn-refuse-cookie {
background: #fff; /*Hintergrundfarbe*/
color: #999; /*Schriftfarbe*/
font-size: 14px; /*Schriftgröße*/
font-family: Poppins; /* Schriftart */
line-height: 1.2; /* Zeilenhöhe */
padding: 1.1em 2.2em; /* Abstand zum Rand */
border-radius: 4em; /*Abrundung der Ecken*/
}
You can find the full CSS at scueeze.com.
Hope this helps.