Last active
August 29, 2015 14:05
-
-
Save yrezgui/57aa6c38a1e2a68b879a to your computer and use it in GitHub Desktop.
dashboard
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="../paper-tabs/paper-tabs.html"> | |
| <link rel="import" href="../paper-tabs/paper-tab.html"> | |
| <link rel="import" href="../core-icons/core-icons.html"> | |
| <link rel="import" href="../paper-icon-button/paper-icon-button.html"> | |
| <polymer-element name="my-element"> | |
| <template> | |
| <style> | |
| :host { | |
| position: absolute; | |
| width: 100%; | |
| height: 100%; | |
| box-sizing: border-box; | |
| } | |
| #core_header_panel { | |
| width: 100%; | |
| height: 100%; | |
| position: absolute; | |
| } | |
| #core_toolbar { | |
| color: rgb(255, 255, 255); | |
| background-color: rgb(79, 125, 201); | |
| } | |
| #div { | |
| left: 1230px; | |
| top: 400px; | |
| } | |
| #section { | |
| height: 1000px; | |
| width: 100%; | |
| background: linear-gradient(rgb(214, 227, 231), rgb(173, 216, 230)); | |
| } | |
| #core_card { | |
| height: 100px; | |
| 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; | |
| width: 80%; | |
| background-color: rgb(255, 255, 255); | |
| } | |
| #paper_tabs { | |
| color: rgb(255, 255, 255); | |
| box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 2px; | |
| background-color: rgb(79, 125, 201); | |
| } | |
| #topeka_app { | |
| width: 300px; | |
| height: 300px; | |
| min-height: 450px; | |
| left: 1210px; | |
| top: 570px; | |
| } | |
| #core_selector { | |
| left: 1200px; | |
| top: 520px; | |
| } | |
| #core_icon { | |
| height: 256px; | |
| width: 256px; | |
| left: 1210px; | |
| top: 430px; | |
| } | |
| #topeka_categories { | |
| width: 300px; | |
| height: 300px; | |
| left: 1260px; | |
| top: 480px; | |
| } | |
| #topeka_profile { | |
| width: 300px; | |
| height: 300px; | |
| left: 1210px; | |
| top: 510px; | |
| } | |
| #topeka_leaderboard { | |
| width: 300px; | |
| height: 300px; | |
| left: 1250px; | |
| top: 520px; | |
| } | |
| #topeka_datasource { | |
| left: 1210px; | |
| top: 370px; | |
| } | |
| #core_card1 { | |
| width: 80%; | |
| height: 100px; | |
| 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; | |
| margin: 20px 0px 0px; | |
| background-color: rgb(255, 255, 255); | |
| } | |
| </style> | |
| <core-header-panel mode="standard" id="core_header_panel"> | |
| <core-toolbar id="core_toolbar" class="medium-tall"> | |
| <core-icon-button id="core_icon_button" icon="menu"></core-icon-button> | |
| <div id="div" flex>Header</div> | |
| <paper-tabs id="paper_tabs" selected="0" class="bottom fit" horizontal layout> | |
| <paper-tab id="paper_tab" active>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">ITEM FOUR</paper-tab> | |
| <paper-tab id="paper_tab4">ITEM FIVE</paper-tab> | |
| </paper-tabs> | |
| <paper-icon-button icon="search" id="paper_icon_button"></paper-icon-button> | |
| <paper-icon-button icon="more-vert" id="paper_icon_button1"></paper-icon-button> | |
| </core-toolbar> | |
| <section id="section"> | |
| <core-card id="core_card" layout vertical></core-card> | |
| <core-card id="core_card1" layout vertical></core-card> | |
| </section> | |
| </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