Skip to content

Instantly share code, notes, and snippets.

@dburdick
Created July 2, 2014 15:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dburdick/667fd7e57a2f2b0749ec to your computer and use it in GitHub Desktop.
Save dburdick/667fd7e57a2f2b0749ec to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../core-menu/core-submenu.html">
<link rel="import" href="../core-drawer-panel/core-drawer-panel.html">
<link rel="import" href="../paper-tabs/paper-tabs.html">
<link rel="import" href="../paper-tabs/paper-tab.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;
}
#core_menu {
font-size: 16px;
left: 1240px;
top: 740px;
position: absolute;
}
#core_scaffold1 {
position: absolute;
top: 980px;
right: 0px;
bottom: 0px;
left: 2200px;
}
#core_scroll_header_panel1 {
width: 380px;
height: 460px;
left: 2210px;
top: 1090px;
}
#chart_js {
width: 300px;
height: 200px;
left: 2150px;
top: 800px;
}
#section {
width: 100%;
height: 100%;
border: 5px solid rgb(204, 204, 204);
position: absolute;
top: 0px;
left: 0px;
}
#paper_tabs {
color: rgb(255, 255, 255);
box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 2px;
background-color: rgb(0, 188, 212);
}
#paper_progress {
width: 100%;
background-color: rgb(255, 62, 240);
}
#core_drawer_panel {
position: absolute;
top: 0px;
right: 0px;
bottom: 0px;
left: 0px;
}
#section2 {
box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px;
background-color: rgb(250, 250, 250);
}
#section3 {
height: 100%;
box-sizing: border-box;
background-color: rgb(221, 221, 221);
}
</style>
<core-menu selected="0" id="core_menu">
</core-menu>
<core-drawer-panel id="core_drawer_panel">
<section id="section2" drawer></section>
<section id="section3" main>
<section id="section" layout vertical>
<paper-tabs noink nobar selected="1" selectedindex="1" id="paper_tabs">
<paper-tab id="paper_tab">ITEM ONE</paper-tab>
<paper-tab id="paper_tab1" active>ITEM TWO</paper-tab>
<paper-tab id="paper_tab2">TAB</paper-tab>
</paper-tabs>
<section id="section1" flex relative>
<paper-progress id="paper_progress" horizontal layout></paper-progress>
</section>
</section>
</section>
</core-drawer-panel>
</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