Skip to content

Instantly share code, notes, and snippets.

@tk120404
Created August 5, 2014 17:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tk120404/087747bf97c8e398f18e to your computer and use it in GitHub Desktop.
Save tk120404/087747bf97c8e398f18e to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../components/polymer/polymer.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#paper_input {
left: 100px;
top: 160px;
position: absolute;
}
#paper_input1 {
left: 100px;
top: 120px;
position: absolute;
}
</style>
<paper-input label="Seat" id="paper_input"></paper-input>
<paper-input label="Type something.." id="paper_input1"></paper-input>
</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