Skip to content

Instantly share code, notes, and snippets.

@tunecino
Created September 12, 2014 20:47
Show Gist options
  • Save tunecino/2ba748518ee9fca8b8bd to your computer and use it in GitHub Desktop.
Save tunecino/2ba748518ee9fca8b8bd to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../paper-button/paper-button.html">
<link rel="import" href="../topeka-elements/avatars.html">
<link rel="import" href="../core-icon/core-icon.html">
<link rel="import" href="../topeka-elements/category-images.html">
<link rel="import" href="../topeka-elements/theme.html">
<link rel="import" href="../topeka-elements/topeka-resources.html">
<link rel="import" href="../topeka-elements/topeka-category.html">
<link rel="import" href="../core-pages/core-pages.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#paper_button {
left: 380px;
top: 120px;
position: absolute;
}
#core_icon {
height: 64px;
width: 64px;
left: 390px;
top: 40px;
position: absolute;
}
#core_icon1 {
height: 256px;
width: 256px;
left: 410px;
top: 70px;
position: absolute;
}
#topeka_category {
width: 350px;
height: 360px;
left: 320px;
top: 10px;
position: absolute;
}
#core_pages {
width: 400px;
height: 400px;
border: 1px solid silver;
left: 260px;
top: 10px;
}
</style>
<paper-button label="Paper Button" id="paper_button"></paper-button>
<core-icon icon="avatars:avatar-1" id="core_icon" designmeta="topeka-avatar"></core-icon>
<core-icon icon="category-images:food" id="core_icon1" designmeta="topeka-image"></core-icon>
<topeka-category id="topeka_category" class="j" vertical layout></topeka-category>
</template>
<script>
Polymer('my-element', {
});
</script>
</polymer-element><core-pages selected="0" selectedindex="0" notap id="core_pages" class="drag-element">
<section active>Page One</section>
<section>Page Two</section>
</core-pages>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment