Created
March 13, 2015 20:46
-
-
Save frankiefu/7e989e413a8febafd871 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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