Created
July 31, 2014 07:44
-
-
Save gaecom/932639a5a28cfa5b1122 to your computer and use it in GitHub Desktop.
designer
This file contains 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="../components/polymer/polymer.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
#ace_element { | |
width: 400px; | |
height: 300px; | |
left: 140px; | |
top: 170px; | |
position: absolute; | |
} | |
:host { | |
opacity: 0.5; | |
position: absolute; | |
top: 0px; | |
left: 0px; | |
width: 100%; | |
height: 100%; | |
} | |
#smoothie_chart { | |
left: 210px; | |
top: 490px; | |
position: absolute; | |
} | |
#google_map_directions { | |
left: 1190px; | |
top: 570px; | |
position: absolute; | |
} | |
#core_icon_button { | |
left: 280px; | |
top: 100px; | |
position: absolute; | |
} | |
#core_item { | |
left: 470px; | |
top: 100px; | |
position: absolute; | |
} | |
#core_menu_button { | |
left: 830px; | |
top: 230px; | |
position: absolute; | |
} | |
#core_header_panel { | |
width: 300px; | |
height: 400px; | |
left: 330px; | |
top: 110px; | |
position: absolute; | |
} | |
#core_toolbar { | |
color: rgb(255, 255, 255); | |
width: 420px; | |
height: 560px; | |
left: 130px; | |
top: 90px; | |
position: absolute; | |
background-color: rgb(79, 125, 201); | |
} | |
#section { | |
height: 1000px; | |
left: 560px; | |
top: 340px; | |
position: absolute; | |
background: linear-gradient(rgb(214, 227, 231), rgb(173, 216, 230)); | |
} | |
</style> | |
<google-map-directions id="google_map_directions"></google-map-directions> | |
<core-menu-button icon="more-vert" selected="0" valueattr="name" id="core_menu_button"> | |
<core-item label="Cut" icon="content-cut" size="24" id="core_item1" horizontal center layout active></core-item> | |
<core-item label="Copy" icon="content-copy" size="24" id="core_item2" horizontal center layout></core-item> | |
<core-item label="Paste" icon="content-paste" size="24" id="core_item3" horizontal center layout></core-item> | |
</core-menu-button> | |
<core-header-panel mode="standard" id="core_header_panel"> | |
</core-header-panel> | |
<section id="section"></section> | |
<core-toolbar id="core_toolbar"> | |
<core-icon-button icon="menu" id="core_icon_button1"></core-icon-button> | |
<div id="div">Header</div> | |
</core-toolbar> | |
<smoothie-chart id="smoothie_chart"></smoothie-chart> | |
<ace-element value="<polymer-element name='my-element'> | |
<template></template> | |
<script> | |
Polymer('my-element', {}); | |
</script> | |
</polymer-element>" id="ace_element"><polymer-element name='my-element'> | |
<template></template> | |
<script> | |
Polymer('my-element', {}); | |
</script> | |
</polymer-element></ace-element> | |
<core-item label="Item" icon="settings" size="24" id="core_item" horizontal center layout></core-item> | |
<core-icon-button icon="menu" id="core_icon_button" theme="core-light-theme"></core-icon-button> | |
</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