Created
June 26, 2014 01:13
-
-
Save kddlb/434637e50a825ea5ab7d 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"> | |
<polymer-element name="Promediator-App"> | |
<template> | |
<style> | |
:host { | |
position: absolute; | |
width: 100%; | |
height: 100%; | |
box-sizing: border-box; | |
top: 0px; | |
left: 0px; | |
} | |
#core_drawer_panel { | |
position: absolute; | |
top: 630px; | |
right: 0px; | |
bottom: 0px; | |
left: 1060px; | |
} | |
#core_scroll_header_panel { | |
width: 380px; | |
height: 460px; | |
left: 1080px; | |
top: 740px; | |
} | |
#core_tooltip { | |
left: 1120px; | |
top: 720px; | |
} | |
#core_input { | |
padding: 15px; | |
left: 1070px; | |
top: 710px; | |
} | |
#core_submenu { | |
left: 1110px; | |
top: 670px; | |
} | |
#core_item { | |
left: 1100px; | |
top: 560px; | |
} | |
#core_header_panel { | |
width: 100%; | |
height: 100%; | |
left: 0px; | |
top: 0px; | |
position: absolute; | |
} | |
#core_toolbar { | |
color: rgb(255, 255, 255); | |
background-color: rgb(79, 125, 201); | |
} | |
#section { | |
height: 1000px; | |
background: linear-gradient(rgb(214, 227, 231), rgb(173, 216, 230)); | |
} | |
</style> | |
<core-header-panel mode="standard" id="core_header_panel"> | |
<core-toolbar id="core_toolbar"> | |
<div id="div">Promediator</div> | |
</core-toolbar> | |
<section id="section"> | |
<core-list> | |
<template> | |
<div class="{{ {selected: selected} | tokenList }}">List row: {{index}}</div> | |
</template> | |
</core-list> | |
</section> | |
</core-header-panel> | |
</template> | |
<script> | |
Polymer('Promediator-App', { | |
}); | |
</script> | |
</polymer-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment