Skip to content

Instantly share code, notes, and snippets.

@vorcigernix
Created August 5, 2014 13:03
Show Gist options
  • Save vorcigernix/e6031685aa92c4f4d6c6 to your computer and use it in GitHub Desktop.
Save vorcigernix/e6031685aa92c4f4d6c6 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>
#paper_input {
left: 600px;
top: 350px;
position: absolute;
}
</style>
<div horizontal center-justified layout>
<div><paper-input label="Type something..." id="paper_input"></paper-input></div>
</div>
</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