Last active
August 18, 2016 22:20
-
-
Save sungamagnus/0a48901888c38cc4076466d3f7f6213a 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="../core-animated-pages/core-animated-pages.html"> | |
| <link rel="import" href="../core-animated-pages/transitions/hero-transition.html"> | |
| <link rel="import" href="../core-animated-pages/transitions/cross-fade.html"> | |
| <link rel="import" href="../core-animated-pages/transitions/slide-down.html"> | |
| <link rel="import" href="../core-animated-pages/transitions/slide-up.html"> | |
| <link rel="import" href="../core-animated-pages/transitions/tile-cascade.html"> | |
| <polymer-element name="my-element"> | |
| <template> | |
| <style> | |
| :host { | |
| position: absolute; | |
| width: 100%; | |
| height: 100%; | |
| box-sizing: border-box; | |
| } | |
| #section { | |
| width: 420px; | |
| height: 630px; | |
| border: 5px solid rgb(204, 204, 204); | |
| left: 180px; | |
| top: 60px; | |
| position: absolute; | |
| } | |
| #paper_tabs { | |
| background-color: rgb(0, 188, 212); | |
| color: rgb(255, 255, 255); | |
| box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 2px; | |
| } | |
| #core_animated_pages { | |
| width: 420px; | |
| height: 582px; | |
| overflow: hidden; | |
| background-color: rgb(238, 238, 238); | |
| left: -5px; | |
| top: -3px; | |
| position: absolute; | |
| } | |
| #section2 { | |
| left: -30px; | |
| top: 30px; | |
| position: absolute; | |
| } | |
| #section3 { | |
| left: 830px; | |
| top: 180px; | |
| position: absolute; | |
| } | |
| #section4 { | |
| left: 740px; | |
| top: 200px; | |
| position: absolute; | |
| } | |
| </style> | |
| <section id="section3"> | |
| <section id="section2" layout horizontal center center-justified> | |
| </section> | |
| </section> | |
| <section id="section4"> | |
| </section> | |
| <section id="section" layout vertical> | |
| <paper-tabs noink nobar selected="0" selectedindex="0" id="paper_tabs" horizontal center layout> | |
| <paper-tab id="paper_tab" inline flex center-center horizontal layout active>ITEM ONE</paper-tab> | |
| <paper-tab id="paper_tab1" inline flex center-center horizontal layout>ITEM TWO</paper-tab> | |
| </paper-tabs> | |
| <section id="section1" flex relative> | |
| <core-animated-pages notap id="core_animated_pages"> | |
| </core-animated-pages> | |
| </section> | |
| </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