Skip to content

Instantly share code, notes, and snippets.

@stevesuh
Created November 8, 2014 18:06
Show Gist options
  • Save stevesuh/de4aa047d30611347de4 to your computer and use it in GitHub Desktop.
Save stevesuh/de4aa047d30611347de4 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;
}
#core_card {
position: absolute;
width: 850px;
height: 690px;
border-top-left-radius: 2px;
border-top-right-radius: 2px;
border-bottom-right-radius: 2px;
border-bottom-left-radius: 2px;
box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px;
left: 290px;
top: 130px;
background-color: rgb(255, 255, 255);
}
#topeka_leaderboard {
width: 850px;
height: 700px;
}
</style>
<core-card id="core_card" layout vertical>
<topeka-leaderboard selected="1" id="topeka_leaderboard" vertical layout></topeka-leaderboard>
</core-card>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment