Skip to content

Instantly share code, notes, and snippets.

@vijaysaimutyala
Last active October 21, 2015 18:04
Show Gist options
  • Save vijaysaimutyala/a93ce8e73204d0b0eb2a to your computer and use it in GitHub Desktop.
Save vijaysaimutyala/a93ce8e73204d0b0eb2a to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../paper-input/paper-input.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;
top: 0px;
left: 0px;
background-color: rgb(255, 255, 255);
}
#paper_input {
left: 410px;
top: 170px;
position: absolute;
}
#paper_input1 {
left: 410px;
top: 230px;
position: absolute;
}
#paper_button {
left: 450px;
top: 300px;
position: absolute;
background-color: rgb(0, 128, 192);
}
</style>
<paper-input label="Login ID" id="paper_input" center-justified></paper-input>
<paper-input label="Password" id="paper_input1"></paper-input>
<paper-button raised id="paper_button">Login</paper-button>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment