Last active
November 3, 2015 03:09
-
-
Save clayrisser/87a1377e066ccad0d029 to your computer and use it in GitHub Desktop.
designer
This file contains hidden or 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 href="../topeka-elements/theme.html" rel="import"> | |
<link href="../topeka-elements/topeka-resources.html" rel="import"> | |
<link href="../topeka-elements/topeka-app.html" rel="import"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
#design_host { | |
position: absolute; | |
width: 100%; | |
height: 100%; | |
box-sizing: border-box; | |
} | |
#core_card { | |
position: absolute; | |
width: 300px; | |
height: 300px; | |
background-color: rgb(255, 255, 255); | |
border-radius: 2px; | |
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.098), 0px 0px 3px rgba(0, 0, 0, 0.098); | |
left: 1030px; | |
top: 430px; | |
} | |
#topeka_app { | |
width: 300px; | |
height: 300px; | |
min-height: 450px; | |
left: 1030px; | |
top: 360px; | |
position: absolute; | |
} | |
#topeka_app1 { | |
width: 100%; | |
height: 100%; | |
min-height: 450px; | |
left: 0px; | |
top: 0px; | |
position: absolute; | |
} | |
</style> | |
<topeka-app selected="profile" disableleaderboard id="topeka_app" categories="[]" layout vertical></topeka-app> | |
<topeka-app selected="profile" disableleaderboard id="topeka_app1" categories="[]" layout vertical></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