Skip to content

Instantly share code, notes, and snippets.

@digvijaybhakuni
Created August 6, 2014 18:41
Show Gist options
  • Save digvijaybhakuni/4c5f5c415dd9c74706b8 to your computer and use it in GitHub Desktop.
Save digvijaybhakuni/4c5f5c415dd9c74706b8 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../components/polymer/polymer.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#paper_button {
left: 0px;
top: 0px;
position: absolute;
width: 100%;
height: 100%;
}
</style>
<paper-button label="Paper Button" raisedbutton focused pressed id="paper_button" class="paper-shadow-animate-z-1-z-2">Done It</paper-button>
</template>
<script>
Polymer('my-element', {
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment