How to make a trasnparente form with bootstrap?

-2

I wanted to put together a transparent form, like the photo example

    
asked by anonymous 19.06.2015 / 20:10

1 answer

0

Here's the code using the default bootstrap class and adding the following style:

<style>
                    input.transparent-input{
                    background-color:rgba(0,0,0,0) !important;
                    border:none !important;
                    }
</style>

<input class="form-control transparent-input" type='text' name='nome' placeholder="Titulo">
    
19.06.2015 / 20:23