Last active
August 29, 2015 14:07
-
-
Save wrenoud/44d58693519a649342b6 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-tabs/paper-tabs.html"> | |
| <link rel="import" href="../paper-tabs/paper-tab.html"> | |
| <link rel="import" href="../google-map/google-map.html"> | |
| <polymer-element name="my-element"> | |
| <template> | |
| <style> | |
| :host { | |
| position: absolute; | |
| width: 100%; | |
| height: 100%; | |
| box-sizing: border-box; | |
| } | |
| #section { | |
| left: 0px; | |
| top: 50px; | |
| position: relative; | |
| } | |
| #paper_tabs { | |
| width: 100%; | |
| color: rgb(255, 255, 255); | |
| box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 2px; | |
| left: 0px; | |
| top: 0px; | |
| position: absolute; | |
| background-color: rgb(0, 188, 212); | |
| } | |
| #google_map { | |
| width: 100%; | |
| height: 400px; | |
| display: block; | |
| } | |
| </style> | |
| <paper-tabs selected="3" selectedindex="3" id="paper_tabs" center> | |
| <paper-tab id="paper_tab">ITEM ONE</paper-tab> | |
| <paper-tab id="paper_tab1">ITEM TWO</paper-tab> | |
| <paper-tab id="paper_tab2">ITEM THREE</paper-tab> | |
| <paper-tab id="paper_tab3" active>ITEM FOUR</paper-tab> | |
| <paper-tab id="paper_tab4">ITEM FIVE</paper-tab> | |
| </paper-tabs> | |
| <section id="section"> | |
| <google-map latitude="37.48562873095233" longitude="-121.22603010742188" id="google_map"></google-map> | |
| </section> | |
| </template> | |
| <script> | |
| Polymer({ | |
| }); | |
| </script> | |
| </polymer-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment