Last active
February 6, 2017 02:58
-
-
Save bugkiwi/a95272edf6ae7d61312d 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="../chart-js/chart-js.html"> | |
| <link rel="import" href="../paper-progress/paper-progress.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"> | |
| <link rel="import" href="../paper-input/paper-input.html"> | |
| <polymer-element name="my-element"> | |
| <template> | |
| <style> | |
| :host { | |
| position: absolute; | |
| width: 100%; | |
| height: 100%; | |
| box-sizing: border-box; | |
| } | |
| #chart_js { | |
| width: 300px; | |
| height: 200px; | |
| left: 130px; | |
| top: 50px; | |
| position: absolute; | |
| } | |
| #paper_progress { | |
| left: 130px; | |
| top: 290px; | |
| position: absolute; | |
| } | |
| #paper_fab { | |
| left: 30px; | |
| top: 30px; | |
| position: absolute; | |
| } | |
| #paper_fab1 { | |
| left: 40px; | |
| top: 110px; | |
| position: absolute; | |
| } | |
| #div { | |
| left: 120px; | |
| top: 30px; | |
| position: absolute; | |
| } | |
| #paper_input { | |
| left: 30px; | |
| top: 220px; | |
| position: absolute; | |
| } | |
| </style> | |
| <chart-js id="chart_js"></chart-js> | |
| <paper-progress id="paper_progress"></paper-progress> | |
| <paper-fab icon="av:play-arrow" id="paper_fab"></paper-fab> | |
| <paper-fab icon="av:play-arrow" id="paper_fab1"></paper-fab> | |
| <div id="div" layout horizontal> | |
| <paper-fab icon="check" id="paper_fab2"></paper-fab> | |
| </div> | |
| <paper-input label="Type something..." id="paper_input"></paper-input> | |
| </template> | |
| <script> | |
| Polymer({ | |
| }); | |
| </script> | |
| </polymer-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment