Last active
August 29, 2015 14:10
-
-
Save svdoever/cdbcd98300a019555829 to your computer and use it in GitHub Desktop.
designer
This file contains 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="../paper-radio-group/paper-radio-group.html"> | |
<link rel="import" href="../paper-radio-button/paper-radio-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/avatars.html"> | |
<link rel="import" href="../core-icon/core-icon.html"> | |
<link rel="import" href="../paper-button/paper-button.html"> | |
<link rel="import" href="../paper-checkbox/paper-checkbox.html"> | |
<link rel="import" href="../paper-calculator/paper-calculator.html"> | |
<link rel="import" href="../topeka-elements/topeka-quizzes.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; | |
width: 100%; | |
height: 100%; | |
box-sizing: border-box; | |
} | |
#paper_radio_group { | |
left: 340px; | |
top: 250px; | |
position: absolute; | |
} | |
#topeka_quiz_view { | |
width: 300px; | |
height: 300px; | |
left: 390px; | |
top: 420px; | |
position: absolute; | |
} | |
#topeka_quiz_view1 { | |
width: 300px; | |
height: 300px; | |
left: 410px; | |
top: 330px; | |
position: absolute; | |
} | |
#core_icon { | |
height: 64px; | |
width: 64px; | |
left: 360px; | |
top: 300px; | |
position: absolute; | |
} | |
#paper_button { | |
left: 730px; | |
top: 300px; | |
position: absolute; | |
} | |
#paper_calculator { | |
width: 700px; | |
height: 650px; | |
left: 600px; | |
top: 100px; | |
position: absolute; | |
} | |
#paper_checkbox { | |
left: 460px; | |
top: 400px; | |
position: absolute; | |
background-color: rgb(79, 143, 0); | |
} | |
#topeka_quizzes { | |
width: 300px; | |
height: 300px; | |
left: 230px; | |
top: 490px; | |
position: absolute; | |
} | |
</style> | |
<paper-radio-group selected="Small" valueattr="label" selectedindex="0" id="paper_radio_group"> | |
<paper-radio-button checked label="Small" id="paper_radio_button"></paper-radio-button> | |
<paper-radio-button label="Medium" id="paper_radio_button1"></paper-radio-button> | |
<paper-radio-button label="Large" id="paper_radio_button2"></paper-radio-button> | |
</paper-radio-group> | |
<topeka-quiz-view id="topeka_quiz_view" block></topeka-quiz-view> | |
<topeka-quiz-view id="topeka_quiz_view1" block></topeka-quiz-view> | |
<core-icon icon="avatars:avatar-14" id="core_icon" designmeta="topeka-avatar"></core-icon> | |
<paper-button id="paper_button">button</paper-button> | |
<paper-checkbox label="click me" id="paper_checkbox" reverse start></paper-checkbox> | |
<paper-calculator responsivewidth="2000px" expression="6" id="paper_calculator"></paper-calculator> | |
<topeka-quizzes id="topeka_quizzes" category="{}" vertical layout></topeka-quizzes> | |
</template> | |
<script> | |
Polymer({ | |
}); | |
</script> | |
</polymer-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment