Created
August 7, 2014 22:22
-
-
Save qwfy5287/fc5e1d4ef10a9045cae2 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="../components/polymer/polymer.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
#paper_progress { | |
left: 80px; | |
top: 280px; | |
position: absolute; | |
} | |
#paper_tab { | |
width: 120px; | |
height: 40px; | |
left: 140px; | |
top: 310px; | |
position: absolute; | |
} | |
#paper_tabs { | |
width: 480px; | |
color: rgb(255, 255, 255); | |
box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 2px; | |
left: 290px; | |
top: 260px; | |
position: absolute; | |
background-color: rgb(0, 188, 212); | |
} | |
</style> | |
<paper-progress id="paper_progress"></paper-progress> | |
<paper-tab id="paper_tab">TAB</paper-tab> | |
<paper-tabs selected="0" selectedindex="0" id="paper_tabs"> | |
<paper-tab id="paper_tab1" active>ITEM ONE</paper-tab> | |
<paper-tab id="paper_tab2">ITEM TWO</paper-tab> | |
<paper-tab id="paper_tab3">ITEM THREE</paper-tab> | |
<paper-tab id="paper_tab4">ITEM FOUR</paper-tab> | |
<paper-tab id="paper_tab5">ITEM FIVE</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