Created
July 4, 2014 11:20
-
-
Save Jupiterrr/97a7f5d0ef44a707c7b1 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-button/paper-button.html"> | |
<link rel="import" href="../paper-radio-button/paper-radio-button.html"> | |
<link rel="import" href="../paper-tabs/paper-tabs.html"> | |
<link rel="import" href="../paper-tabs/paper-tab.html"> | |
<link rel="import" href="../topeka-elements/theme.html"> | |
<link rel="import" href="../topeka-elements/topeka-resources.html"> | |
<link rel="import" href="../topeka-elements/topeka-app.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; | |
width: 100%; | |
height: 100%; | |
box-sizing: border-box; | |
} | |
#paper_button { | |
left: 340px; | |
top: 130px; | |
position: absolute; | |
} | |
#paper_radio_button { | |
left: 280px; | |
top: 170px; | |
position: absolute; | |
} | |
#paper_tabs { | |
width: 480px; | |
color: rgb(255, 255, 255); | |
box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 2px; | |
left: 230px; | |
top: 330px; | |
position: absolute; | |
background-color: rgb(0, 188, 212); | |
} | |
#topeka_app { | |
width: 100%; | |
height: 100%; | |
min-height: 450px; | |
left: 0px; | |
top: 0px; | |
position: absolute; | |
} | |
</style> | |
<paper-button label="Paper Button" id="paper_button"></paper-button> | |
<paper-radio-button label="Radio Button" id="paper_radio_button"></paper-radio-button> | |
<paper-tabs selected="0" selectedindex="0" id="paper_tabs"> | |
<paper-tab id="paper_tab" active>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> | |
<topeka-app id="topeka_app" vertical layout></topeka-app> | |
</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