Created
September 11, 2014 13:57
-
-
Save tenntenn/5e88309ac4760a171a3f 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="../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