Created
July 4, 2014 13:35
-
-
Save ismcagdas/83da8d221f99e9f299ee 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-checkbox/paper-checkbox.html"> | |
| <link rel="import" href="../paper-button/paper-button.html"> | |
| <link rel="import" href="../paper-tabs/paper-tab.html"> | |
| <link rel="import" href="../paper-tabs/paper-tabs.html"> | |
| <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"> | |
| <polymer-element name="my-element"> | |
| <template> | |
| <style> | |
| :host { | |
| position: absolute; | |
| width: 100%; | |
| height: 100%; | |
| box-sizing: border-box; | |
| } | |
| #paper_checkbox { | |
| left: 470px; | |
| top: 430px; | |
| position: absolute; | |
| } | |
| #paper_button { | |
| left: 810px; | |
| top: 520px; | |
| position: absolute; | |
| } | |
| #paper_tab { | |
| width: 120px; | |
| height: 40px; | |
| left: 890px; | |
| top: 210px; | |
| position: absolute; | |
| } | |
| #paper_tabs { | |
| width: 480px; | |
| color: rgb(255, 255, 255); | |
| box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 2px; | |
| left: 180px; | |
| top: 180px; | |
| position: absolute; | |
| background-color: rgb(0, 188, 212); | |
| } | |
| #core_header_panel { | |
| width: 300px; | |
| height: 400px; | |
| left: 1050px; | |
| top: 150px; | |
| position: absolute; | |
| } | |
| #core_toolbar { | |
| color: rgb(255, 255, 255); | |
| background-color: rgb(79, 125, 201); | |
| } | |
| </style> | |
| <paper-checkbox label="click me" id="paper_checkbox"></paper-checkbox> | |
| <paper-button label="Paper Button" id="paper_button"></paper-button> | |
| <paper-tab id="paper_tab">TAB</paper-tab> | |
| <paper-tabs selected="0" selectedindex="0" id="paper_tabs"> | |
| <paper-tab id="paper_tab1" active>ITEM ONE</paper-tab> | |
| <paper-tab id="paper_tab2">ITEM TWO</paper-tab> | |
| <paper-tab id="paper_tab3">ITEM THREE</paper-tab> | |
| <paper-tab id="paper_tab4">ITEM FOUR</paper-tab> | |
| <paper-tab id="paper_tab5">ITEM FIVE</paper-tab> | |
| </paper-tabs> | |
| <core-header-panel mode="standard" id="core_header_panel"> | |
| <core-toolbar id="core_toolbar"> | |
| <core-icon-button icon="menu" id="core_icon_button"></core-icon-button> | |
| <div id="div">Header</div> | |
| </core-toolbar> | |
| </core-header-panel> | |
| </template> | |
| <script> | |
| Polymer('my-element', { | |
| }); | |
| </script> | |
| </polymer-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment