Created
July 30, 2014 16:02
-
-
Save yhbyun/a1bc8218a85b19727d3c 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 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; | |
| } | |
| #cool_clock { | |
| width: 180px; | |
| height: 180px; | |
| left: 590px; | |
| top: 240px; | |
| position: absolute; | |
| } | |
| #paper_fab { | |
| left: 650px; | |
| top: 430px; | |
| position: absolute; | |
| } | |
| </style> | |
| <cool-clock skin="Tes2" id="cool_clock"></cool-clock> | |
| <paper-fab icon="av:play-arrow" id="paper_fab"></paper-fab> | |
| </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