Last active
August 29, 2015 14:10
-
-
Save woisme/5a9a1197cc71519d81e0 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"> | |
<link rel="import" href="../core-icons/core-icons.html"> | |
<link rel="import" href="../core-icons/av-icons.html"> | |
<link rel="import" href="../paper-fab/paper-fab.html"> | |
<link rel="import" href="../paper-input/paper-input.html"> | |
<link rel="import" href="../paper-item/paper-item.html"> | |
<link rel="import" href="../paper-icon-button/paper-icon-button.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; | |
width: 100%; | |
height: 100%; | |
box-sizing: border-box; | |
top: 0px; | |
left: 0px; | |
} | |
#div { | |
left: 700px; | |
top: 370px; | |
position: absolute; | |
} | |
#paper_fab { | |
left: 325px; | |
top: 487px; | |
position: absolute; | |
} | |
#paper_input { | |
left: 65px; | |
top: 147px; | |
position: absolute; | |
} | |
#section { | |
width: 420px; | |
height: 630px; | |
border: 5px solid rgb(204, 204, 204); | |
left: 390px; | |
top: 30px; | |
position: absolute; | |
} | |
#paper_tabs { | |
color: rgb(255, 255, 255); | |
box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 2px; | |
background-color: rgb(0, 188, 212); | |
} | |
#paper_input1 { | |
left: 225px; | |
top: 147px; | |
position: absolute; | |
} | |
#section2 { | |
left: 25px; | |
top: -103px; | |
position: absolute; | |
} | |
#section3 { | |
left: -55px; | |
top: -63px; | |
position: absolute; | |
} | |
#paper_icon_button { | |
left: 105px; | |
top: 227px; | |
position: absolute; | |
} | |
#paper_icon_button1 { | |
left: 265px; | |
top: 227px; | |
position: absolute; | |
} | |
#paper_item { | |
left: 55px; | |
top: 107px; | |
position: absolute; | |
} | |
#paper_item1 { | |
left: 245px; | |
top: 107px; | |
position: absolute; | |
} | |
#paper_item2 { | |
left: 165px; | |
top: 57px; | |
position: absolute; | |
} | |
#paper_input2 { | |
left: 135px; | |
top: 227px; | |
position: absolute; | |
} | |
#paper_input3 { | |
left: 225px; | |
top: 297px; | |
position: absolute; | |
} | |
</style> | |
<div id="div" layout horizontal> | |
</div> | |
<section id="section" layout vertical> | |
<paper-tabs noink nobar selected="1" selectedindex="1" id="paper_tabs" horizontal center layout> | |
<paper-tab id="paper_tab" inline flex center-center horizontal layout>Single Booking</paper-tab> | |
<paper-tab id="paper_tab1" inline flex center-center horizontal layout active>Group Booking</paper-tab> | |
</paper-tabs> | |
<section id="section1" flex relative> | |
<paper-fab icon="check" id="paper_fab"></paper-fab> | |
<section id="section2" layout horizontal center center-justified> | |
</section> | |
<section id="section3"> | |
</section> | |
<paper-input label="Date From" floatinglabel id="paper_input"></paper-input> | |
<paper-input label="Date To" floatinglabel id="paper_input1"></paper-input> | |
<paper-item raised active pressed toggle id="paper_item" icon="settings" label="Item">Range</paper-item> | |
<paper-item id="paper_item1" icon="settings" label="Item">Single</paper-item> | |
<paper-item id="paper_item2" icon="settings" label="Item">Dates</paper-item> | |
<paper-icon-button icon="expand-less" id="paper_icon_button"></paper-icon-button> | |
<paper-input label="Days" value=" 2" id="paper_input2"></paper-input> | |
<paper-icon-button icon="expand-more" id="paper_icon_button1"></paper-icon-button> | |
<paper-input label="Location..." committedvalue="Location" id="paper_input3"></paper-input> | |
</section> | |
</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