Skip to content

Instantly share code, notes, and snippets.

@kpgarrod
Created July 23, 2014 07:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kpgarrod/e6d6ca8a151f618c7d6d to your computer and use it in GitHub Desktop.
Save kpgarrod/e6d6ca8a151f618c7d6d to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../components/polymer/polymer.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#core_animated_pages {
width: 420px;
height: 582px;
overflow: hidden;
left: 630px;
top: 210px;
position: absolute;
background-color: rgb(238, 238, 238);
}
#core_icon_button {
left: 900px;
top: 440px;
position: absolute;
}
</style>
<core-animated-pages selectedindex="0" notap id="core_animated_pages">
<section id="section" layout horizontal center center-justified active>
</section>
<section id="section1">
</section>
<section id="section2">
</section>
</core-animated-pages>
<core-icon-button icon="menu" id="core_icon_button" theme="core-light-theme"></core-icon-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