Created
February 24, 2015 18:51
-
-
Save mastercyb/3ff134cf3d0674a964ef to your computer and use it in GitHub Desktop.
designer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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