Skip to content

Instantly share code, notes, and snippets.

@stutya
Last active August 29, 2015 14:15
Show Gist options
  • Save stutya/9d01383a5fd13448a4d0 to your computer and use it in GitHub Desktop.
Save stutya/9d01383a5fd13448a4d0 to your computer and use it in GitHub Desktop.
designer
<link href="../topeka-elements/topeka-resources.html" rel="import">
<link href="../topeka-elements/topeka-leaderboard.html" rel="import">
<link href="../topeka-elements/topeka-profile.html" rel="import">
<link href="../topeka-elements/category-icons.html" rel="import">
<link href="../core-icon/core-icon.html" rel="import">
<link href="../topeka-elements/theme.html" rel="import">
<link href="../topeka-elements/topeka-app.html" rel="import">
<polymer-element name="my-element">
<template>
<style>
#topeka_leaderboard {
width: 300px;
height: 300px;
left: 350px;
top: 60px;
position: absolute;
}
#topeka_profile {
width: 300px;
height: 300px;
left: 450px;
top: 70px;
position: absolute;
}
#core_icon {
height: 128px;
width: 128px;
left: 400px;
top: 210px;
position: absolute;
}
#topeka_app {
width: 300px;
height: 300px;
min-height: 450px;
left: 340px;
top: 70px;
position: absolute;
}
</style>
<topeka-leaderboard id="topeka_leaderboard"></topeka-leaderboard>
<topeka-profile id="topeka_profile"></topeka-profile>
<core-icon icon="category-icons:food" id="core_icon" designmeta="topeka-icon"></core-icon>
<topeka-app id="topeka_app"></topeka-app>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment