Last active
August 29, 2015 14:04
-
-
Save workingmonk/91c533c59638f1feb045 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-scaffold/core-scaffold.html"> | |
<link rel="import" href="../core-header-panel/core-header-panel.html"> | |
<link rel="import" href="../core-menu/core-menu.html"> | |
<link rel="import" href="../core-item/core-item.html"> | |
<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-menu/core-submenu.html"> | |
<link rel="import" href="../paper-input/paper-input.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; | |
width: 100%; | |
height: 100%; | |
box-sizing: border-box; | |
} | |
#paper_item { | |
left: 1580px; | |
top: 750px; | |
} | |
#paper_radio_button { | |
left: 1630px; | |
top: 800px; | |
} | |
#paper_radio_group { | |
left: 1610px; | |
top: 810px; | |
} | |
#paper_ripple { | |
width: 300px; | |
height: 300px; | |
left: 1600px; | |
top: 870px; | |
} | |
#paper_slider { | |
left: 1610px; | |
top: 890px; | |
} | |
#paper_toggle_button { | |
left: 1610px; | |
top: 920px; | |
} | |
#core_item2 { | |
left: 1600px; | |
top: 660px; | |
} | |
#core_pages { | |
width: 400px; | |
height: 400px; | |
border: 1px solid silver; | |
left: 1670px; | |
top: 710px; | |
} | |
#section { | |
left: 1640px; | |
top: 740px; | |
} | |
#core_submenu { | |
left: 1640px; | |
top: 790px; | |
} | |
#core_toolbar1 { | |
right: 0px; | |
left: 1650px; | |
color: rgb(255, 255, 255); | |
fill: rgb(255, 255, 255); | |
top: 820px; | |
background-color: rgb(79, 125, 201); | |
} | |
#core_tooltip { | |
left: 1670px; | |
top: 870px; | |
} | |
#core_header_panel1 { | |
width: 300px; | |
height: 400px; | |
left: 1590px; | |
top: 720px; | |
} | |
#topeka_app { | |
width: 300px; | |
height: 300px; | |
min-height: 450px; | |
left: 1060px; | |
top: 490px; | |
} | |
#core_scaffold { | |
position: relative; | |
top: 0px; | |
right: 0px; | |
bottom: 0px; | |
width: 100%; | |
height: 100%; | |
} | |
#core_header_panel { | |
position: relative; | |
background-color: rgb(255, 255, 255); | |
} | |
#core_toolbar { | |
color: rgb(255, 255, 255); | |
background-color: rgb(79, 125, 201); | |
} | |
#core_menu { | |
font-size: 16px; | |
} | |
#div { | |
position: relative; | |
left: 5px; | |
} | |
#core_item { | |
padding: 5px; | |
} | |
#paper_input { | |
left: 5px; | |
position: relative; | |
} | |
</style> | |
<core-scaffold id="core_scaffold"> | |
<core-header-panel mode="scroll" id="core_header_panel" navigation flex> | |
<core-toolbar id="core_toolbar"></core-toolbar> | |
<core-menu selected="Item1" valueattr="label" selectedindex="0" id="core_menu" theme="core-light-theme"> | |
<core-item id="core_item" icon="settings" label="Item1" active horizontal layout center>YAHOO_CARDS_REGION_IN</core-item> | |
<core-item id="core_item1" icon="settings" label="Item2" horizontal center layout></core-item> | |
</core-menu> | |
</core-header-panel> | |
<div id="div" tool>This is a very long title to see where it ends</div> | |
<paper-input label="Type something..." willvalidate id="paper_input" layout vertical></paper-input> | |
</core-scaffold> | |
</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