Skip to content

Instantly share code, notes, and snippets.

@r0ks0n
Last active August 29, 2015 14:10
Show Gist options
  • Save r0ks0n/8bc08864b7277cf0ff5a to your computer and use it in GitHub Desktop.
Save r0ks0n/8bc08864b7277cf0ff5a to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../paper-ripple/paper-ripple.html">
<link rel="import" href="../core-icons/core-icons.html">
<link rel="import" href="../core-icons/av-icons.html">
<link rel="import" href="../paper-fab/paper-fab.html">
<polymer-element name="my-element">
<template>
<style>
#paper_ripple {
width: 300px;
height: 300px;
left: 480px;
top: 130px;
position: absolute;
}
#paper_fab {
left: 670px;
top: 370px;
position: absolute;
}
</style>
<paper-ripple id="paper_ripple"></paper-ripple>
<paper-fab icon="av:play-arrow" id="paper_fab"></paper-fab>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment