Last active
August 29, 2015 14:08
-
-
Save patrickjaja/14751c999502f3620142 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="../google-map/google-map.html"> | |
<link rel="import" href="../paper-tabs/paper-tabs.html"> | |
<link rel="import" href="../paper-tabs/paper-tab.html"> | |
<link rel="import" href="../paper-checkbox/paper-checkbox.html"> | |
<link rel="import" href="../paper-progress/paper-progress.html"> | |
<link rel="import" href="../paper-input/paper-input.html"> | |
<link rel="import" href="../paper-radio-button/paper-radio-button.html"> | |
<link rel="import" href="../paper-button/paper-button.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; | |
width: 100%; | |
height: 100%; | |
box-sizing: border-box; | |
} | |
#section { | |
left: 430px; | |
top: 200px; | |
position: absolute; | |
width: 940px; | |
height: 690px; | |
} | |
#google_map { | |
width: 400px; | |
height: 400px; | |
display: block; | |
left: 200px; | |
top: 220px; | |
position: absolute; | |
} | |
#paper_tabs { | |
width: 480px; | |
color: rgb(255, 255, 255); | |
box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 2px; | |
left: 210px; | |
top: 0px; | |
position: absolute; | |
background-color: rgb(0, 188, 212); | |
} | |
#paper_checkbox { | |
left: 680px; | |
top: 150px; | |
position: absolute; | |
} | |
#paper_progress { | |
left: 90px; | |
top: 90px; | |
position: absolute; | |
} | |
#paper_input { | |
left: 390px; | |
top: 120px; | |
position: absolute; | |
} | |
#paper_radio_button { | |
left: 670px; | |
top: 270px; | |
position: absolute; | |
} | |
#paper_button { | |
left: 673px; | |
top: 370px; | |
position: absolute; | |
} | |
</style> | |
<section id="section"> | |
<google-map latitude="38.22510923256835" longitude="-123.2818467578125" id="google_map">map</google-map> | |
<paper-tabs selected="2" selectedindex="2" id="paper_tabs"> | |
<paper-tab id="paper_tab">ITEM ONE</paper-tab> | |
<paper-tab id="paper_tab1">ITEM TWO</paper-tab> | |
<paper-tab id="paper_tab2" active>ITEM THREE</paper-tab> | |
<paper-tab id="paper_tab3">ITEM FOUR</paper-tab> | |
<paper-tab id="paper_tab4">ITEM FIVE</paper-tab> | |
</paper-tabs> | |
<paper-checkbox label="click me" id="paper_checkbox"></paper-checkbox> | |
<paper-progress id="paper_progress">test</paper-progress> | |
<paper-input label="Type something..." willvalidate id="paper_input" layout vertical></paper-input> | |
<paper-radio-button label="Radio Button" id="paper_radio_button"></paper-radio-button> | |
<paper-button label="Paper Button" id="paper_button"></paper-button> | |
</section> | |
</template> | |
<script> | |
Polymer({ | |
}); | |
</script> | |
</polymer-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment