Created
October 1, 2014 14:48
-
-
Save jschr/247551f8078e8c9153d3 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 rel="import" href="../chart-js/chart-js.html"> | |
<link rel="import" href="../paper-input/paper-input.html"> | |
<link rel="import" href="../core-icons/core-icons.html"> | |
<link rel="import" href="../paper-icon-button/paper-icon-button.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-quiz-view.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; | |
} | |
#chart_js { | |
width: 300px; | |
height: 200px; | |
left: 650px; | |
top: 280px; | |
position: absolute; | |
} | |
#paper_input { | |
left: 1190px; | |
top: 560px; | |
position: absolute; | |
} | |
#paper_icon_button { | |
left: 1130px; | |
top: 210px; | |
position: absolute; | |
} | |
#topeka_quiz_view { | |
width: 300px; | |
height: 300px; | |
left: 870px; | |
top: 480px; | |
position: absolute; | |
} | |
#topeka_leaderboard { | |
width: 300px; | |
height: 300px; | |
left: 1060px; | |
top: 340px; | |
position: absolute; | |
} | |
</style> | |
<chart-js kind="Bar" id="chart_js"></chart-js> | |
<paper-input label="Type something..." willvalidate id="paper_input" layout vertical></paper-input> | |
<paper-icon-button icon="menu" id="paper_icon_button"></paper-icon-button> | |
<topeka-quiz-view id="topeka_quiz_view" block></topeka-quiz-view> | |
<topeka-leaderboard disabled 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