I am currently working on customizing a funnel chart based on data from my database that is displayed on the page. Everything is functioning correctly except for the CSS rendering of the chart.
<ul id="funnel-cht">
<li style="height:70px;width:50%;background-color:yellow">pendora</li>
<li style="height:70px;width:40%;background-color:#98bf26">pending</li>
<li style="height:70px;width:30%;background-color:orange">pen</li>
<li style="height:70px;width:20%;background-color:#c10000">Test</li>
</ul>
This is how it appears at the moment- http://jsfiddle.net/m74ets8v/1/
I would like to enhance its appearance to resemble an actual funnel chart, similar to this example-
What steps should I take to properly style this chart for better visualization?