Last active
August 29, 2015 14:10
-
-
Save r0ks0n/8bc08864b7277cf0ff5a to your computer and use it in GitHub Desktop.
designer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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