Skip to content

Instantly share code, notes, and snippets.

@IntranetFactory
Last active August 29, 2015 14:03
Show Gist options
  • Select an option

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

Select an option

Save IntranetFactory/93987d62031482f3bccf to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../core-icons/core-icons.html">
<link rel="import" href="../core-icon/core-icon.html">
<polymer-element name="my-element">
aaaaa
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#core_icon {
height: 24px;
width: 24px;
left: 130px;
top: 100px;
position: absolute;
}
</style>
<core-icon icon="social:cake" id="core_icon"></core-icon>
</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