Last active
August 29, 2015 14:07
-
-
Save boundedinfinity/59facbc5a2da1d896c81 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-item/core-item.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
width: 100%; | |
height: 100%; | |
box-sizing: border-box; | |
} | |
#core_header_panel { | |
width: 100%; | |
height: 100%; | |
left: 0px; | |
top: 0px; | |
position: absolute; | |
} | |
#core_toolbar { | |
color: rgb(242, 242, 242); | |
background-color: rgb(8, 8, 138); | |
} | |
#section { | |
height: 1000px; | |
opacity: 1; | |
background: rgb(242, 242, 242); | |
} | |
#core_item { | |
left: 988px; | |
top: 10px; | |
position: absolute; | |
} | |
#core_drawer_panel { | |
position: absolute; | |
top: 560px; | |
right: 0px; | |
bottom: 0px; | |
left: 1240px; | |
} | |
#core_toolbar1 { | |
right: 0px; | |
left: 1120px; | |
color: rgb(255, 255, 255); | |
fill: rgb(255, 255, 255); | |
top: 600px; | |
background-color: rgb(79, 125, 201); | |
} | |
</style> | |
<core-header-panel mode="standard" shadow 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-item id="core_item" icon="settings" label="Item" horizontal center layout></core-item> | |
</core-toolbar> | |
<p>some text here</p> | |
<p>some text here</p> | |
<p>some text here</p> | |
<p>some text here</p> | |
<p>some text here</p> | |
<p>some text here</p> | |
<p>some text here</p> | |
<p>some text here</p> | |
<p>some text here</p> | |
<p>some text here</p> | |
<p>some text here</p> | |
<p>some text here</p> | |
<p>some text here</p> | |
<p>some text here</p> | |
<p>some text here</p> | |
<p>some text here</p> | |
<p>some text here</p> | |
<p>some text here</p> | |
</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