I've got this code from google but I'm unable to style it, I put new rule in my site's css but it doesn't listen to it and overrides it with google's default, what can I do with it to make it look as I want it to instead of how google planned it?
That's my css that gets ignored
.cse .gsc-control-cse, .gsc-control-cse {
background-color: transparent;
border: none;
width: 280px;
}
and that's the google cse code
<script>
(function() {
var cx = '013795634587489910289:wcfxuut_dc8';
var gcse = document.createElement('script');
gcse.type = 'text/javascript';
gcse.async = true;
gcse.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') +
'//cse.google.com/cse.js?cx=' + cx;
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(gcse, s);
})();
</script>
<gcse:search></gcse:search>