Last active
August 29, 2015 14:06
-
-
Save ethancoder151/11fc1189e5f1c37a30c5 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="../core-icon-button/core-icon-button.html"> | |
| <link rel="import" href="../core-toolbar/core-toolbar.html"> | |
| <link rel="import" href="../core-header-panel/core-header-panel.html"> | |
| <link rel="import" href="../core-icons/core-icons.html"> | |
| <link rel="import" href="../paper-icon-button/paper-icon-button.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"> | |
| <link rel="import" href="../paper-tabs/paper-tabs.html"> | |
| <link rel="import" href="../paper-tabs/paper-tab.html"> | |
| <polymer-element name="my-element"> | |
| <template> | |
| <style> | |
| body { | |
| font-family: sans-serif; | |
| } | |
| core-header-panel { | |
| height: 100vh; | |
| width: 100vw; | |
| background: white; | |
| } | |
| core-toolbar { | |
| background-color: rgb(3, 169, 244); | |
| } | |
| p { | |
| margin: 20px; | |
| padding: 80px 20px; | |
| border-top-left-radius: 20px; | |
| border-top-right-radius: 20px; | |
| border-bottom-right-radius: 20px; | |
| border-bottom-left-radius: 20px; | |
| background-color: rgb(238, 238, 238); | |
| } | |
| #core_header_panel { | |
| left: 0px; | |
| top: 0px; | |
| position: absolute; | |
| } | |
| #core_animated_pages { | |
| width: 100%; | |
| height: 100%; | |
| overflow: hidden; | |
| left: 0px; | |
| top: 0px; | |
| position: absolute; | |
| background-color: rgb(238, 238, 238); | |
| } | |
| #paper_tabs { | |
| width: 480px; | |
| color: rgb(255, 255, 255); | |
| box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 2px; | |
| background-color: rgb(0, 188, 212); | |
| } | |
| #section { | |
| left: 220px; | |
| top: 26px; | |
| position: absolute; | |
| } | |
| </style> | |
| <core-header-panel id="core_header_panel"> | |
| <core-toolbar id="mainheader"> | |
| <paper-icon-button icon="arrow-back" id="navicon"></paper-icon-button> | |
| <span id="span" flex>Lean Tutor</span> | |
| <paper-icon-button icon="search" id="searchbutton"></paper-icon-button> | |
| </core-toolbar> | |
| <core-animated-pages selectedindex="0" notap id="core_animated_pages"> | |
| <section id="section1" active> | |
| <section id="section" layout horizontal center around-justified> | |
| <paper-tabs selected="3" selectedindex="3" id="paper_tabs"> | |
| <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> | |
| </section> | |
| <section id="section2"> | |
| </section> | |
| </core-animated-pages> | |
| </core-header-panel> | |
| </template> | |
| <script> | |
| Polymer({ | |
| }); | |
| </script> | |
| </polymer-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment