Created
July 15, 2014 22:19
-
-
Save plaflamme/3deed41c6397aa71ab4b 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"> | |
| <link rel="import" href="../components/core-layout/core-layout.html"> | |
| <polymer-element name="hop-od-select"> | |
| <template> | |
| <style> | |
| :host { | |
| position: absolute; | |
| width: 100%; | |
| height: 100%; | |
| box-sizing: border-box; | |
| top: 0px; | |
| left: 0px; | |
| } | |
| </style> | |
| <core-layout id="core_layout" vertical> | |
| <div id="div"> | |
| <img id="img" src="http://hopper.com/favicon.ico"></img> | |
| </div> | |
| <div id="div1" flex>Content</div> | |
| </core-layout> | |
| </template> | |
| <script> | |
| Polymer('hop-od-select', { | |
| }); | |
| </script> | |
| </polymer-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment