hallo,
I'd like to add a button style with just the border. My problem is that one part of the page has a light background and another a dark background, so I need to invert the colors, but I can't. I've tried using the page's custom CSS, both on the add on and the template styles but I can't seem to fix it.
Thank you for your help
on light background:
.sppb-btn, body .btn{
background-color: rgba(0,0,0,0);
color: #1D5072;
border-color: #1D5072;
}
.sppb-btn:hover, body .btn:hover{
background-color: rgba(0,0,0,0);
color: #ca7c5c;
border-color: #ca7c5c;
}
on dark background
.sppb-btn, body .btn{
background-color: rgba(0,0,0,0);
color: #f3f0e7;
border-color: #f3f0e7;
}
.sppb-btn:hover, body .btn:hover{
background-color: rgba(0,0,0,0);
color: #ca7c5c;
border-color: #ca7c5c;
}