Skip to content

Instantly share code, notes, and snippets.

@tanasecosminromeo
Created November 26, 2014 13:10
Show Gist options
  • Save tanasecosminromeo/995b7e07569580fa5d3e to your computer and use it in GitHub Desktop.
Save tanasecosminromeo/995b7e07569580fa5d3e 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-app.html">
<link rel="import" href="../paper-button/paper-button.html">
<link rel="import" href="../paper-calculator/paper-calculator.html">
<link rel="import" href="../paper-checkbox/paper-checkbox.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#topeka_app {
width: 300px;
height: 300px;
min-height: 450px;
left: 360px;
top: 20px;
position: absolute;
}
#paper_button {
left: 590px;
top: 150px;
position: absolute;
background-color: rgb(0, 0, 160);
}
#paper_calculator {
width: 400px;
height: 560px;
left: 320px;
top: -20px;
position: absolute;
}
#paper_checkbox {
left: 620px;
top: 160px;
position: absolute;
}
</style>
<topeka-app selected="profile" disableleaderboard id="topeka_app" vertical layout></topeka-app>
<paper-button id="paper_button">button</paper-button>
<paper-calculator responsivewidth="2000px" id="paper_calculator"></paper-calculator>
<paper-checkbox label="click me" id="paper_checkbox"></paper-checkbox>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment