Skip to content

Instantly share code, notes, and snippets.

@IntranetFactory
Created April 1, 2015 21:09
Show Gist options
  • Save IntranetFactory/d16219c9701f3e42fedd to your computer and use it in GitHub Desktop.
Save IntranetFactory/d16219c9701f3e42fedd to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../topeka-elements/theme.html">
<link rel="import" href="../topeka-elements/topeka-resources.html">
<link rel="import" href="../topeka-elements/topeka-category.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#topeka_category {
width: 300px;
height: 300px;
left: 230px;
top: 100px;
position: absolute;
}
</style>
<topeka-category selected="quizzes" id="topeka_category" vertical layout></topeka-category>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment