Remove shadow-box and adjust container size

1

I'm having a hard time making some adjustments to a page

I'm using BootStrap3, and I can only configure the settings in Clientside

I would like to remove the shadow box from a jumotron.btn

box-shadow: 0 5px 11px 0 rgba(0,0,0,0.18),0 4px 15px 0 rgba(0,0,0,0.15)

and change the size of container from 70% to 40%

In what file should I make these changes? in% default% I did not find.

When I open the console I find this link,

http://cdnjs.cloudflare.com/ajax/libs/materialize/0.96.1/css/materialize.min.css

I'm new to this part of the Web, if you can give birth.

    
asked by anonymous 01.02.2016 / 17:44

1 answer

1

Create a new .css file and make the changes there, always placing! important So what should you do when using bootstrap

In the new file created, put this:

.jumbotron .btn{
 box-shadow: 0 0 0 0 rgba(0,0,0,0),0 0 0 0 rgba(0,0,0,0) !important;   
}
    
07.02.2016 / 21:09