Created
September 9, 2014 01:55
Revisions
-
Moncader created this gist
Sep 9, 2014 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,118 @@ <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="../core-icons/av-icons.html"> <link rel="import" href="../paper-fab/paper-fab.html"> <link rel="import" href="../paper-progress/paper-progress.html"> <polymer-element name="my-element"> <template> <style> :host { position: absolute; width: 100%; height: 100%; box-sizing: border-box; background-color: rgb(255, 255, 255); } #core_field { left: 1730px; top: 740px; } #core_drawer_panel { position: absolute; top: 820px; right: 0px; bottom: 0px; left: 1730px; } #core_header_panel { width: 1620px; height: 1030px; left: 0px; top: 0px; position: absolute; } #core_toolbar { color: rgb(255, 255, 255); background-color: rgb(79, 125, 201); } #section { padding: 24px; height: 100%; background: linear-gradient(rgb(214, 227, 231), rgb(173, 216, 230)); } #core_scaffold { position: absolute; top: 710px; right: 0px; bottom: 0px; left: 1720px; } #core_card { width: 300px; height: 300px; 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; background-color: rgb(255, 255, 255); } #core_icon { height: 128px; width: 128px; left: 1730px; top: 710px; } #topeka_datasource { left: 1720px; top: 890px; } #topeka_app { width: 300px; height: 300px; min-height: 450px; left: 1780px; top: 700px; } #paper_ripple { width: 300px; height: 300px; left: 1780px; top: 830px; } #paper_toggle_button { left: 1660px; top: 820px; } #paper_button { left: 1640px; top: 710px; } </style> <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> <section id="section" horizontal layout wrap start-justified start> <core-card id="core_card" layout vertical center-justified center> <paper-fab icon="av:play-arrow" id="paper_fab" center-justified></paper-fab> <paper-progress id="paper_progress"></paper-progress> </core-card> </section> </core-header-panel> </template> <script> Polymer('my-element', { }); </script> </polymer-element>