Created
January 25, 2016 12:57
-
-
Save patrickjaja/e04b0e22bd369787db64 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="../paper-button/paper-button.html"> | |
<link rel="import" href="../paper-input/paper-input.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; | |
width: 100%; | |
height: 100%; | |
box-sizing: border-box; | |
} | |
#paper_button { | |
left: 170px; | |
top: 70px; | |
position: absolute; | |
} | |
#paper_input { | |
left: 0px; | |
top: 40px; | |
position: absolute; | |
} | |
#paper_button1 { | |
left: 1310px; | |
top: 540px; | |
} | |
</style> | |
<paper-button id="paper_button">button</paper-button> | |
<paper-input label="Name" id="testName"></paper-input> | |
<paper-input label="PLZ" id="testPLZ"></paper-input> | |
</template> | |
<script> | |
Polymer({ | |
}); | |
</script> | |
</polymer-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment