Skip to content

Instantly share code, notes, and snippets.

@IntranetFactory
Created September 5, 2014 00:15
Show Gist options
  • Select an option

  • Save IntranetFactory/fcfb75dafede86abf064 to your computer and use it in GitHub Desktop.

Select an option

Save IntranetFactory/fcfb75dafede86abf064 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../core-input/core-input.html">
<polymer-element name="my-element" extends="core-input">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#core_input {
padding: 15px;
left: 70px;
top: 110px;
position: absolute;
}
</style>
<core-input willvalidate placeholder="Type something..." id="core_input"></core-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