Skip to content

Instantly share code, notes, and snippets.

@frankiefu
Created March 13, 2015 20:46
Show Gist options
  • Save frankiefu/7e989e413a8febafd871 to your computer and use it in GitHub Desktop.
Save frankiefu/7e989e413a8febafd871 to your computer and use it in GitHub Desktop.
<!doctype html>
<html>
<head>
<title>core-toolbar</title>
<script src="../webcomponentsjs/webcomponents.js"></script>
<link rel="import" href="https://www.polymer-project.org/0.5/components/core-toolbar/core-toolbar.html">
<link rel="import" href="https://www.polymer-project.org/0.5/components/core-icon-button/core-icon-button.html">
<style shim-shadowdom>
body {
font-family: sans-serif;
}
core-toolbar {
background-color: #CFA0E9;
}
</style>
</head>
<body unresolved>
<core-toolbar>
<core-icon-button icon="menu"></core-icon-button>
<span flex>title</span>
<core-icon-button icon="translate"></core-icon-button>
<core-icon-button icon="mail"></core-icon-button>
</core-toolbar>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment