Created
July 24, 2014 12:41
-
-
Save smileEng/63a3fc679df922a9ed17 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 href="../chart-js/chart-js.html" rel="import"> | |
| <link href="../core-icon-button/core-icon-button.html" rel="import"> | |
| <link href="../core-toolbar/core-toolbar.html" rel="import"> | |
| <link href="../core-scroll-header-panel/core-scroll-header-panel.html" rel="import"> | |
| <link href="../paper-progress/paper-progress.html" rel="import"> | |
| <link href="../paper-radio-button/paper-radio-button.html" rel="import"> | |
| <polymer-element name="my-element"> | |
| <template> | |
| <style> | |
| #design_host { | |
| position: absolute; | |
| width: 100%; | |
| height: 100%; | |
| box-sizing: border-box; | |
| } | |
| #chart_js { | |
| width: 300px; | |
| height: 200px; | |
| left: 570px; | |
| top: 50px; | |
| position: absolute; | |
| } | |
| #chart_js1 { | |
| width: 300px; | |
| height: 200px; | |
| left: 1390px; | |
| top: 460px; | |
| } | |
| #google_map { | |
| width: 400px; | |
| height: 400px; | |
| display: block; | |
| left: 1290px; | |
| top: 500px; | |
| } | |
| #core_scroll_header_panel { | |
| width: 380px; | |
| height: 460px; | |
| left: 440px; | |
| top: 90px; | |
| position: absolute; | |
| } | |
| #core_toolbar { | |
| background-color: rgb(66, 133, 244); | |
| color: rgb(241, 241, 241); | |
| fill: rgb(241, 241, 241); | |
| left: 220px; | |
| top: 230px; | |
| position: absolute; | |
| } | |
| #section { | |
| height: 5000px; | |
| background: linear-gradient(rgb(214, 227, 231), lightblue) repeat scroll 0% 0% transparent; | |
| } | |
| #paper_progress { | |
| left: 870px; | |
| top: 170px; | |
| position: absolute; | |
| } | |
| #paper_progress1 { | |
| left: 1260px; | |
| top: 530px; | |
| } | |
| #paper_radio_button { | |
| left: 880px; | |
| top: 280px; | |
| position: absolute; | |
| } | |
| </style> | |
| <chart-js kind="Line" id="chart_js"></chart-js> | |
| <core-scroll-header-panel condenses headerheight="192" condensedheaderheight="64" id="core_scroll_header_panel"> | |
| <section id="section" content></section> | |
| </core-scroll-header-panel> | |
| <paper-progress id="paper_progress"></paper-progress> | |
| <paper-radio-button label="Radio Button" id="paper_radio_button"></paper-radio-button> | |
| </template> | |
| <script> | |
| Polymer('my-element', { | |
| }); | |
| </script> | |
| </polymer-element><core-toolbar id="core_toolbar" class="tall"> | |
| <core-icon-button icon="arrow-back" id="core_icon_button"></core-icon-button> | |
| <div id="div" flex></div> | |
| <core-icon-button icon="search" id="core_icon_button1"></core-icon-button> | |
| <core-icon-button icon="more-vert" id="core_icon_button2"></core-icon-button> | |
| <div id="div1" class="bottom indent">Title</div> | |
| </core-toolbar> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment