Last active
August 29, 2015 14:16
-
-
Save shillcock/299308bc0bcf4e94be51 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-menu/core-submenu.html"> | |
| <link rel="import" href="../paper-item/paper-item.html"> | |
| <polymer-element name="my-element"> | |
| <template> | |
| <style> | |
| :host { | |
| position: absolute; | |
| width: 100%; | |
| height: 100%; | |
| box-sizing: border-box; | |
| } | |
| #core_header_panel { | |
| width: 770px; | |
| height: 590px; | |
| left: 80px; | |
| top: 60px; | |
| position: absolute; | |
| } | |
| #core_toolbar { | |
| color: rgb(255, 255, 255); | |
| background-color: rgb(79, 125, 201); | |
| } | |
| #section { | |
| height: 1000px; | |
| background: linear-gradient(rgb(214, 227, 231), rgb(173, 216, 230)); | |
| } | |
| #paper_icon_button { | |
| left: -2px; | |
| top: 10px; | |
| position: absolute; | |
| } | |
| #headerPanel { | |
| position: absolute; | |
| top: 0px; | |
| left: 0px; | |
| width: 100%; | |
| height: 100%; | |
| } | |
| </style> | |
| <core-header-panel mode="standard" id="headerPanel"> | |
| <core-toolbar id="core_toolbar"> | |
| <paper-icon-button icon="menu" id="paper_icon_button" core-drawer-toggle> | |
| </paper-icon-button> | |
| <div id="title" flex>{{ heading }}</div> | |
| <paper-menu-button id="menuBtn" noink> | |
| <paper-icon-button icon="more-vert" id="paper_icon_button1" noink></paper-icon-button> | |
| <paper-dropdown id="paper_dropdown" class="dropdown" halign="left"> | |
| <core-menu selected="1" selectedindex="1" id="core_menu" class="menu"> | |
| <paper-item id="paper_item">Settings</paper-item> | |
| <paper-item active id="paper_item1">Help</paper-item> | |
| <paper-item id="paper_item2">Feedback</paper-item> | |
| </core-menu> | |
| </paper-dropdown> | |
| </paper-menu-button> | |
| </core-toolbar> | |
| <section id="section"> | |
| </section> | |
| </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