Created
January 26, 2015 08:20
-
-
Save mshanak/b7ba1b6d48cd235efca6 to your computer and use it in GitHub Desktop.
designer
This file contains hidden or 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 href="../core-icons/core-icons.html" rel="import"> | |
| <link href="../core-icons/av-icons.html" rel="import"> | |
| <link href="../paper-fab/paper-fab.html" rel="import"> | |
| <polymer-element name="my-element"> | |
| <template> | |
| <style> | |
| #design_host { | |
| position: absolute; | |
| width: 100%; | |
| height: 100%; | |
| box-sizing: border-box; | |
| } | |
| #div { | |
| left: 450px; | |
| top: 200px; | |
| position: absolute; | |
| } | |
| #paper_fab1 { | |
| left: 350px; | |
| top: 310px; | |
| position: absolute; | |
| } | |
| #div1 { | |
| left: 510px; | |
| top: 300px; | |
| position: absolute; | |
| } | |
| </style> | |
| <paper-fab icon="av:play-arrow" id="paper_fab1"></paper-fab> | |
| <div id="div" horizontal layout> | |
| <paper-fab icon="check" id="paper_fab"></paper-fab> | |
| </div> | |
| <div id="div1" horizontal layout> | |
| <paper-fab icon="check" id="paper_fab2"></paper-fab> | |
| </div> | |
| </template> | |
| <script> | |
| Polymer({ | |
| }); | |
| </script> | |
| </polymer-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment