Skip to content

Instantly share code, notes, and snippets.

@ujiro99
Created September 6, 2014 08:28
Show Gist options
  • Save ujiro99/fef7e36896aad2f48d1a to your computer and use it in GitHub Desktop.
Save ujiro99/fef7e36896aad2f48d1a to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../polymer/polymer.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#core_menu {
font-size: 16px;
left: 1260px;
top: 410px;
}
#core_menu_button {
left: 1160px;
top: 410px;
}
#core_submenu {
left: 1230px;
top: 500px;
}
</style>
</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