Skip to content

Instantly share code, notes, and snippets.

@rockaport
Last active August 29, 2015 14:13
Show Gist options
  • Save rockaport/0566598b34c459704f46 to your computer and use it in GitHub Desktop.
Save rockaport/0566598b34c459704f46 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: 1220px;
top: 390px;
}
#core_menu_button {
left: 1180px;
top: 440px;
}
#section {
width: 960px;
height: 100%;
left: 80px;
top: 0px;
position: absolute;
}
</style>
<section id="section">Home</section>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment