Skip to content

Instantly share code, notes, and snippets.

@hknochi
Last active August 29, 2015 14:17
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 hknochi/1db76cf963db7c1e18b1 to your computer and use it in GitHub Desktop.
Save hknochi/1db76cf963db7c1e18b1 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../paper-toast/paper-toast.html">
<link rel="import" href="../topeka-elements/topeka-resources.html">
<link rel="import" href="../topeka-elements/topeka-leaderboard.html">
<polymer-element name="my-element">
<template>
<style>
#paper_toast {
left: 570px;
top: 250px;
position: absolute;
}
#topeka_leaderboard {
width: 300px;
height: 300px;
left: 560px;
top: 150px;
position: absolute;
}
</style>
<paper-toast text="Toast!" id="paper_toast" class="core-transition core-transition-bottom" touch-action="none"></paper-toast>
<paper-toast text="Toast!" id="paper_toast1" touch-action="none" class="core-transition core-transition-bottom"></paper-toast>
<topeka-leaderboard selected="1" id="topeka_leaderboard" vertical layout></topeka-leaderboard>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment