Created
September 9, 2014 01:46
-
-
Save kuu/ef015459deb7b54b4504 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-checkbox/paper-checkbox.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-radio-button/paper-radio-button.html"> | |
<link rel="import" href="../paper-progress/paper-progress.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; | |
width: 100%; | |
height: 100%; | |
box-sizing: border-box; | |
} | |
#paper_checkbox { | |
left: 690px; | |
top: 280px; | |
position: absolute; | |
} | |
#paper_checkbox1 { | |
left: 690px; | |
top: 310px; | |
position: absolute; | |
} | |
#paper_fab { | |
left: 690px; | |
top: 370px; | |
position: absolute; | |
} | |
#paper_input { | |
left: 850px; | |
top: 290px; | |
position: absolute; | |
} | |
#paper_radio_button { | |
left: 1120px; | |
top: 280px; | |
position: absolute; | |
} | |
#paper_radio_button1 { | |
left: 1120px; | |
top: 320px; | |
position: absolute; | |
} | |
#paper_progress { | |
left: 860px; | |
top: 400px; | |
position: absolute; | |
} | |
</style> | |
<paper-checkbox label="option 1" id="paper_checkbox"></paper-checkbox> | |
<paper-checkbox label="option 2" id="paper_checkbox1"></paper-checkbox> | |
<paper-fab icon="av:play-arrow" id="paper_fab"></paper-fab> | |
<paper-input label="Type something..." willvalidate id="paper_input" layout vertical></paper-input> | |
<paper-radio-button label="male" id="paper_radio_button"></paper-radio-button> | |
<paper-radio-button label="female" id="paper_radio_button1"></paper-radio-button> | |
<paper-progress id="paper_progress"></paper-progress> | |
</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