Skip to content

Instantly share code, notes, and snippets.

@carlosg2
Last active August 29, 2015 14:15
Show Gist options
  • Save carlosg2/8621d6b8aed9579231b5 to your computer and use it in GitHub Desktop.
Save carlosg2/8621d6b8aed9579231b5 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../paper-button/paper-button.html">
<link rel="import" href="../paper-ripple/paper-ripple.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#paper_button {
left: 490px;
top: 260px;
position: absolute;
}
#paper_ripple {
width: 300px;
height: 300px;
left: -3.46875px;
top: -10px;
position: absolute;
}
</style>
<paper-button id="paper_button">
<paper-ripple id="paper_ripple"></paper-ripple>
</paper-button>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment