I use bootstrap v.3 and I wanted to make a diferrent button, so I copy all the css classes for btn-primary, renamed to myBigButton and apply my changes. Here works perfect. However in my page the new class 'myBigButton' doesnt exist (when I inspect element from the broswer..)
I have the same code in my page
<div class="container">
    <div class="row ">
        <div class="col-md-4">               
            <button type="button" class="btn myBigBtn btn-block ">aaaaaa</button>
        </div>
        <div class="col-md-4">               
            <button type="button" class="btn myBigBtn btn-block">bbbbbb</button>
        </div>
        <div class="col-md-4">               
            <button type="button" class="btn myBigBtn btn-block">cccccc</button>
        </div>
    </div>
</div>
any ideas why?
The strangest is that if double write the css class
.myBigBtn {
    color: #ffffff;
    background-color: #5A6E9E;
    border-color:#5A6E9E;
    line-height: 100px;
    font-size: 23px;
}
.myBigBtn {
    color: #ffffff;
    background-color: #5A6E9E;
    border-color:#5A6E9E;
    line-height: 100px;
    font-size: 23px;
}
works..
UPDATE
I add all the css file here where it doesn't work either..
 
     
    