So, the solution here is to not use translucent (rgba) colors for the main column. Otherwise, you can see the shadow of the sidebar column through it, destroying the effect of one of them on top of the other.
To see the correct effect, go to the example page and use Firebug or another DOM tool to change the background color for the #main-content
div from rgba(0, 100, 0, 0.2)
to rgba(0, 100, 0, 1)
. You should now see that this is truly the βtopβ of the left panel.
source share