Last active
August 29, 2015 14:07
-
-
Save Benoss/b54acb5b0e30c393eb16 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="../core-ajax/core-ajax.html"> | |
<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: relative; | |
width: 100%; | |
height: 100%; | |
box-sizing: border-box; | |
} | |
#core_ajax { | |
left: 970px; | |
top: 350px; | |
position: absolute; | |
} | |
#paper_tabs { | |
width: 100%; | |
color: rgb(255, 255, 255); | |
box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 2px; | |
left: 490px; | |
top: 30px; | |
position: static; | |
background-color: rgb(0, 188, 212); | |
} | |
</style> | |
<core-ajax id="core_ajax"></core-ajax> | |
<paper-tabs id="paper_tabs" selected="0"> | |
<paper-tab id="paper_tab">ITEM ONE</paper-tab> | |
<paper-tab id="paper_tab1">ITEM TWO</paper-tab> | |
<paper-tab id="paper_tab2">ITEM THREE</paper-tab> | |
<paper-tab id="paper_tab3">ITEM FOUR</paper-tab> | |
<paper-tab id="paper_tab4">ITEM FIVE</paper-tab> | |
</paper-tabs> | |
</template> | |
<script> | |
Polymer({ | |
}); | |
</script> | |
</polymer-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment