I am currently experimenting with Polymer 1.0 elements for a simple test. However, in the paper-header-panel test, it seems that the content area elements are either not visible or are overlapping with the paper-header div. You can view the demo here and the code is provided below. I am puzzled as to why the content text is not being displayed properly?
<!DOCTYPE html>
<html>
<head>
<title>paper-header-panel demo</title>
<script src="bower_components/webcomponentsjs/webcomponents-lite.js"></script>
<link rel="import" href="bower_components/paper-header-panel/paper-header-panel.html">
<link rel="import" href="bower_components/iron-flex-layout/iron-flex-layout.html">
</head>
<body class="fullbleed layout vertical" style="height: 100%">
<paper-header-panel mode="waterfall" class="flex">
<div class="paper-header" style="height: 60px;">I am the header</div>
<div class="content fit">I am the content</div>
</paper-header-panel>
</body>
</html>