Skip to content

Instantly share code, notes, and snippets.

@aericson
Last active August 29, 2015 14:14
Show Gist options
  • Save aericson/4df93aed629fb30829b7 to your computer and use it in GitHub Desktop.
Save aericson/4df93aed629fb30829b7 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-quiz-view.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#section {
left: 1370px;
top: 630px;
position: absolute;
}
#core_selector {
width: 100%;
height: 50px;
left: 330px;
top: 350px;
position: absolute;
}
#topeka_quiz_view {
width: 300px;
height: 300px;
left: -330px;
top: -350px;
position: absolute;
}
</style>
<section id="section"></section>
<core-selector selected="0" selectedindex="0" id="core_selector">
<topeka-quiz-view id="topeka_quiz_view" active block></topeka-quiz-view>
</core-selector>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment