for anyone who might need this in the future 
you can subscribe to the rendered event and then style the iframe via javascript
twttr.ready( function (twttr) {
twttr.events.bind('rendered', function (event) {
console.log(event.target.id); // id of the generated iframe
});
});