Skip to content

Instantly share code, notes, and snippets.

@alihalabyah
Created November 3, 2014 09:34
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 alihalabyah/31c639c88672604e32a8 to your computer and use it in GitHub Desktop.
Save alihalabyah/31c639c88672604e32a8 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../paper-button/paper-button.html">
<link rel="import" href="../paper-progress/paper-progress.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#paper_button {
left: 820px;
top: 210px;
position: absolute;
}
#paper_progress {
left: 800px;
top: 380px;
position: absolute;
}
</style>
<paper-button label="Paper Button" id="paper_button"></paper-button>
<paper-progress id="paper_progress"></paper-progress>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment