Last active
November 9, 2016 21:04
-
-
Save alexlopes/71d20fbd829606217a31416ff863da78 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="../paper-calculator/paper-calculator.html"> | |
| <polymer-element name="my-element"> | |
| <template> | |
| <style> | |
| :host { | |
| position: absolute; | |
| width: 100%; | |
| height: 100%; | |
| box-sizing: border-box; | |
| top: 0px; | |
| left: 0px; | |
| } | |
| #section { | |
| box-sizing: border-box; | |
| width: 420px; | |
| height: 630px; | |
| background-color: rgb(255, 255, 141); | |
| left: 1060px; | |
| top: 460px; | |
| } | |
| #paper_calculator { | |
| width: 400px; | |
| height: 560px; | |
| left: 280px; | |
| top: 70px; | |
| position: absolute; | |
| } | |
| </style> | |
| <paper-calculator responsivewidth="2000px" id="paper_calculator"></paper-calculator> | |
| </template> | |
| <script> | |
| Polymer({ | |
| }); | |
| </script> | |
| </polymer-element><section id="section" layout vertical center center-justified class="drag-element"> | |
| <div hero layout vertical center center-justified> | |
| <span>+8</span> | |
| </div> | |
| </section> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment