Skip to content

Instantly share code, notes, and snippets.

@gvillalta99
Last active August 29, 2015 14:09
Show Gist options
  • Save gvillalta99/ff8b3089aca67b331674 to your computer and use it in GitHub Desktop.
Save gvillalta99/ff8b3089aca67b331674 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../ace-element/ace-element.html">
<link rel="import" href="../topeka-elements/theme.html">
<link rel="import" href="../topeka-elements/topeka-resources.html">
<link rel="import" href="../topeka-elements/topeka-app.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#ace_element {
width: 400px;
height: 300px;
left: 100px;
top: 40px;
position: absolute;
}
#section10 {
box-sizing: border-box;
width: 420px;
height: 582px;
left: 1500px;
top: 370px;
}
#topeka_app {
width: 300px;
height: 300px;
min-height: 450px;
left: 40px;
top: 10px;
position: absolute;
}
</style>
<ace-element id="ace_element">function test() {
var x = true;
}</ace-element>
<topeka-app selected="profile" disableleaderboard id="topeka_app" categories="[]" vertical layout></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