Skip to content

Instantly share code, notes, and snippets.

@tenntenn
Created September 11, 2014 13:57
Show Gist options
  • Save tenntenn/5e88309ac4760a171a3f to your computer and use it in GitHub Desktop.
Save tenntenn/5e88309ac4760a171a3f to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../paper-tabs/paper-tabs.html">
<link rel="import" href="../paper-tabs/paper-tab.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
top: 0px;
left: 0px;
}
#section {
left: 920px;
top: 370px;
position: absolute;
}
#section1 {
left: 810px;
top: 340px;
position: absolute;
}
#core_menu {
font-size: 16px;
left: 1160px;
top: 560px;
}
#paper_tabs {
width: 100%;
color: rgb(255, 255, 255);
box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 2px;
left: 0px;
top: 0px;
position: absolute;
background-color: rgb(33, 33, 33);
}
</style>
<section id="section"></section>
<section id="section1"></section>
<paper-tabs selected="0" selectedindex="0" id="paper_tabs">
<paper-tab id="paper_tab" active>Source</paper-tab>
<paper-tab id="paper_tab1">Console</paper-tab>
</paper-tabs>
</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