Skip to content

Instantly share code, notes, and snippets.

@educsis
Created July 1, 2014 20:39
Show Gist options
  • Save educsis/d526981e6ff76c2314b7 to your computer and use it in GitHub Desktop.
Save educsis/d526981e6ff76c2314b7 to your computer and use it in GitHub Desktop.
designer
<link href="../paper-input/paper-input.html" rel="import">
<polymer-element name="my-element">
<template>
<style>
#design_host {
box-sizing: border-box;
}
#paper_input {
left: 80px;
top: 20px;
position: absolute;
}
</style>
<paper-input label="Nombre..." floatinglabel id="paper_input"></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