Last active
August 29, 2015 14:06
-
-
Save MrTiggr/ee9e4f3cf53e0d1016a3 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-input/paper-input.html"> | |
<link rel="import" href="../core-icons/core-icons.html"> | |
<link rel="import" href="../paper-item/paper-item.html"> | |
<link rel="import" href="../paper-tabs/paper-tabs.html"> | |
<link rel="import" href="../paper-tabs/paper-tab.html"> | |
<link rel="import" href="../paper-toggle-button/paper-toggle-button.html"> | |
<link rel="import" href="../paper-slider/paper-slider.html"> | |
<link rel="import" href="../paper-radio-button/paper-radio-button.html"> | |
<link rel="import" href="../paper-radio-group/paper-radio-group.html"> | |
<link rel="import" href="../paper-progress/paper-progress.html"> | |
<link rel="import" href="../paper-checkbox/paper-checkbox.html"> | |
<link rel="import" href="../core-field/core-field.html"> | |
<link rel="import" href="../core-icon/core-icon.html"> | |
<link rel="import" href="../core-input/core-input.html"> | |
<link rel="import" href="../core-tooltip/core-tooltip.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; | |
width: 100%; | |
height: 100%; | |
box-sizing: border-box; | |
} | |
#paper_input { | |
left: 90px; | |
top: 60px; | |
position: absolute; | |
background-color: rgb(255, 255, 255); | |
} | |
#paper_item { | |
left: 360px; | |
top: 290px; | |
position: absolute; | |
} | |
#section { | |
width: 940px; | |
height: 350px; | |
border: 5px solid rgb(204, 204, 204); | |
left: 570px; | |
top: 170px; | |
position: absolute; | |
} | |
#paper_tabs { | |
color: rgb(255, 255, 255); | |
box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 2px; | |
background-color: rgb(0, 23, 47); | |
} | |
#paper_toggle_button { | |
left: 350px; | |
top: 390px; | |
position: absolute; | |
} | |
#paper_slider { | |
left: 350px; | |
top: 440px; | |
position: absolute; | |
} | |
#paper_radio_button { | |
left: 350px; | |
top: 490px; | |
position: absolute; | |
} | |
#paper_radio_group { | |
left: 330px; | |
top: 540px; | |
position: absolute; | |
} | |
#paper_progress { | |
left: 330px; | |
top: 610px; | |
position: absolute; | |
} | |
#paper_input1 { | |
left: 340px; | |
top: 640px; | |
position: absolute; | |
} | |
#paper_checkbox { | |
left: 330px; | |
top: 700px; | |
position: absolute; | |
} | |
#core_field { | |
left: 320px; | |
top: 740px; | |
position: absolute; | |
} | |
#core_input1 { | |
padding: 15px; | |
left: 320px; | |
top: 780px; | |
position: absolute; | |
} | |
#core_tooltip { | |
left: 1000px; | |
top: 730px; | |
position: absolute; | |
} | |
</style> | |
<paper-input label="Playground" floatinglabel placeholder="Playground" disabled readonly inputvalue="John Knight Park" value="John Knight Park" id="paper_input"></paper-input> | |
<paper-item icon="history" id="paper_item" center horizontal layout> | |
<div layout vertical> | |
<strong>Sheduled Inspection</strong> | |
<small>14-12-2013</small> | |
<small>Inspected By: Wayne Lee-Archer</small> | |
</div> | |
</paper-item> | |
<section id="section" layout vertical> | |
<paper-tabs selected="0" selectedindex="0" id="paper_tabs"> | |
<paper-tab noink id="paper_tab" active>ITEM ONE</paper-tab> | |
<paper-tab noink id="paper_tab1">ITEM TWO</paper-tab> | |
</paper-tabs> | |
<section id="section1" flex relative> | |
</section> | |
</section> | |
<paper-toggle-button id="paper_toggle_button" touch-action="pan-y"></paper-toggle-button> | |
<paper-slider immediatevalue="0" id="paper_slider"></paper-slider> | |
<paper-radio-button label="Radio Button" id="paper_radio_button"></paper-radio-button> | |
<paper-radio-group selected="Small" valueattr="label" selectedindex="0" id="paper_radio_group"> | |
<paper-radio-button checked label="Small" id="paper_radio_button1"></paper-radio-button> | |
<paper-radio-button label="Medium" id="paper_radio_button2"></paper-radio-button> | |
<paper-radio-button label="Large" id="paper_radio_button3"></paper-radio-button> | |
</paper-radio-group> | |
<paper-progress id="paper_progress"></paper-progress> | |
<paper-input label="Type something..." id="paper_input1"></paper-input> | |
<paper-checkbox label="click me" id="paper_checkbox"></paper-checkbox> | |
<core-field id="core_field" icon="search" theme="core-light-theme" center horizontal layout> | |
<core-icon icon="search" id="core_icon"></core-icon> | |
<core-input placeholder="text input" id="core_input" flex></core-input> | |
</core-field> | |
<core-input placeholder="Type something..." id="core_input1"></core-input> | |
<core-tooltip label="testing" show id="core_tooltip"></core-tooltip> | |
</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