Skip to content

Instantly share code, notes, and snippets.

@inl1ne
Created August 21, 2014 01:15
Show Gist options
  • Save inl1ne/f8513e5b0e6de42fa864 to your computer and use it in GitHub Desktop.
Save inl1ne/f8513e5b0e6de42fa864 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../core-icon-button/core-icon-button.html">
<polymer-element name="drecognizer-bar">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 48px;
box-sizing: border-box;
top: 0px;
left: 0px;
background-color: rgb(236, 235, 237);
}
#core_icon_button {
left: 1000px;
top: 0px;
position: absolute;
}
</style>
<img id="img" src="https://lh6.googleusercontent.com/-Fgp8KFpgQqE/AAAAAAAAAAI/AAAAAAAAQBs/3hrijbutXqo/photo.jpg?sz=48"></img>
<core-icon-button id="core_icon_button" icon="menu" theme="core-light-theme"></core-icon-button>
</template>
<script>
Polymer('drecognizer-bar', {
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment