Skip to content

Instantly share code, notes, and snippets.

@svjunic
Created July 8, 2014 09:49
Show Gist options
  • Save svjunic/de0aff4d8ac8cd2882c5 to your computer and use it in GitHub Desktop.
Save svjunic/de0aff4d8ac8cd2882c5 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../paper-button/paper-button.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#core_submenu1 {
left: 1490px;
top: 710px;
}
#paper_button {
left: 120px;
top: 20px;
position: static;
display: block;
}
</style>
<paper-button label="俺のボタン" id="paper_button"></paper-button>
</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