Been experimenting with creating custom shapes in Bootstrap - they display correctly in HTML and CSS, but Bootstrap distorts them. It seems like there are no conflicting classes. Could it be necessary to use '!important' on some of the elements?
<div class="pot-top"></div>
<div class="pot-top-shadow"></div>
<div class="pot-bot"></div>
.pot-top{
width: 100px;
height: 20px;
background-color: #FF7043;
top: 200px;
left: 300px;
position: absolute;
}
.pot-bot{
width: 50px;
height: 0px;
position: absolute;
border-left: 15px solid transparent;
border-right: 15px solid transparent;
border-top: 50px solid #FF7043 ;
top: 220px;
left: 310px;
z-index: 5;
}
.pot-top-shadow{
width: 72px;
height: 0px;
position: absolute;
border-left: 5px solid transparent;
border-right: 5px solid transparent;
border-top: 10px solid #F4511E ;
top: 220px;
left: 310px;
z-index: 10;
}