Last active
August 29, 2015 14:06
-
-
Save ethancoder151/610b8fe51f2731556ccd 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"> | |
| <link rel="import" href="../paper-input/paper-input.html"> | |
| <link rel="import" href="../core-icons/core-icons.html"> | |
| <link rel="import" href="../core-icons/av-icons.html"> | |
| <link rel="import" href="../paper-fab/paper-fab.html"> | |
| <polymer-element name="my-element"> | |
| <template> | |
| <style> | |
| :host { | |
| position: absolute; | |
| width: 100%; | |
| height: 100%; | |
| box-sizing: border-box; | |
| } | |
| #core_card {+ | |
| width: 290px; | |
| height: 150px; | |
| border-top-left-radius: 2px; | |
| border-top-right-radius: 2px; | |
| border-bottom-right-radius: 2px; | |
| border-bottom-left-radius: 2px; | |
| box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px; | |
| padding: 14px; | |
| background-color: rgb(255, 255, 255); | |
| } | |
| #paper_fab { | |
| width: 50px; | |
| height: 50px; | |
| } | |
| #div { | |
| width: 290px; | |
| height: 40px; | |
| } | |
| #section { | |
| width: 420px; | |
| height: 630px; | |
| border: 5px solid rgb(204, 204, 204); | |
| left: 0px; | |
| top: 0px; | |
| position: absolute; | |
| } | |
| #paper_tabs { | |
| color: rgb(255, 255, 255); | |
| box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 2px; | |
| background-color: rgb(0, 188, 212); | |
| } | |
| #core_animated_pages { | |
| width: 420px; | |
| height: 582px; | |
| overflow: hidden; | |
| background-color: rgb(245, 245, 245); | |
| } | |
| #section2 { | |
| left: 30px; | |
| top: 0px; | |
| position: absolute; | |
| } | |
| #section3 { | |
| left: 590px; | |
| top: -10px; | |
| position: absolute; | |
| } | |
| #section1 { | |
| position: absolute; | |
| } | |
| #core_card1 { | |
| position: absolute; | |
| width: 290px; | |
| height: 220px; | |
| border-top-left-radius: 2px; | |
| border-top-right-radius: 2px; | |
| border-bottom-right-radius: 2px; | |
| border-bottom-left-radius: 2px; | |
| box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px; | |
| left: 75px; | |
| top: 127px; | |
| padding: 14px; | |
| background-color: rgb(255, 255, 255); | |
| } | |
| #paper_radio_group { | |
| left: 1110px; | |
| top: 480px; | |
| } | |
| #paper_fab1 { | |
| width: 50px; | |
| height: 50px; | |
| } | |
| </style> | |
| <section id="section3"> | |
| </section> | |
| <section id="section" layout vertical> | |
| <paper-tabs noink nobar selected="0" selectedindex="0" id="paper_tabs"> | |
| <paper-tab id="paper_tab" active>Login</paper-tab> | |
| <paper-tab id="paper_tab1">Register</paper-tab> | |
| </paper-tabs> | |
| <section id="section1" flex relative> | |
| </section> | |
| <core-animated-pages selected="{{ $.paper_tabs.selected }}" lastselected="1" selectedindex="0" notap id="core_animated_pages" center-justified> | |
| <section id="section2" layout horizontal center active center-justified> | |
| <core-card id="core_card" layout vertical start-justified> | |
| <paper-input label="Username:" willvalidate id="paper_input" layout vertical></paper-input> | |
| <paper-input label="Password:" willvalidate type="password" id="paper_input1" layout vertical></paper-input> | |
| <div id="div" layout horizontal end-justified> | |
| <paper-fab icon="check" id="paper_fab"></paper-fab> | |
| </div> | |
| </core-card> | |
| </section> | |
| <section id="section4"> | |
| <core-card id="core_card1" layout vertical> | |
| <paper-input label="Username:" willvalidate id="paper_input2" layout vertical></paper-input> | |
| <paper-input label="Password:" willvalidate id="paper_input3" layout vertical></paper-input> | |
| <paper-input label="Skype:" willvalidate id="paper_input4" layout vertical></paper-input> | |
| <paper-input label="Telephone:" willvalidate id="paper_input5" layout vertical></paper-input> | |
| <div id="div1" layout horizontal end-justified> | |
| <paper-fab icon="check" id="paper_fab1"></paper-fab> | |
| </div> | |
| </core-card> | |
| </section> | |
| </core-animated-pages> | |
| </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