Skip to content

Instantly share code, notes, and snippets.

@danbrown1010
Created April 5, 2015 15:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danbrown1010/6b91ffc0bd968b863744 to your computer and use it in GitHub Desktop.
Save danbrown1010/6b91ffc0bd968b863744 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../core-icons/core-icons.html">
<link rel="import" href="../paper-icon-button/paper-icon-button.html">
<link rel="import" href="../paper-item/paper-item.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#section {
left: 490px;
top: 490px;
position: absolute;
}
#paper_icon_button {
left: 500px;
top: 40px;
position: absolute;
}
#paper_icon_button1 {
left: 500px;
top: 80px;
position: absolute;
}
#paper_icon_button2 {
left: 500px;
top: 120px;
position: absolute;
}
#paper_item {
left: 230px;
top: 20px;
position: absolute;
}
</style>
<section id="section"></section>
<paper-icon-button icon="create" id="paper_icon_button"></paper-icon-button>
<paper-icon-button icon="delete" id="paper_icon_button1"></paper-icon-button>
<paper-icon-button icon="info" id="paper_icon_button2"></paper-icon-button>
<paper-item id="paper_item" icon="settings" label="Item"></paper-item>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment