Skip to content

Instantly share code, notes, and snippets.

@mastercyb
Created February 24, 2015 18:51
Show Gist options
  • Save mastercyb/3ff134cf3d0674a964ef to your computer and use it in GitHub Desktop.
Save mastercyb/3ff134cf3d0674a964ef to your computer and use it in GitHub Desktop.
designer
<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>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
top: 0px;
left: 0px;
}
#section1 {
left: 200px;
top: 40px;
position: absolute;
background-color: rgb(255, 255, 141);
}
#topeka_app1 {
width: 300px;
height: 300px;
min-height: 450px;
left: 1170px;
top: 600px;
}
#topeka_leaderboard {
width: 300px;
height: 300px;
left: 430px;
top: 140px;
position: absolute;
}
</style>
<section id="section1" class="top" flex layout horizontal center center-justified hero hero-id="top">
</section>
<topeka-leaderboard 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