Skip to content

Instantly share code, notes, and snippets.

@ecsplendid
Last active August 29, 2015 14:20
Show Gist options
  • Save ecsplendid/a6073caceb2d6eee6745 to your computer and use it in GitHub Desktop.
Save ecsplendid/a6073caceb2d6eee6745 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../paper-checkbox/paper-checkbox.html">
<link rel="import" href="../paper-calculator/paper-calculator.html">
<link rel="import" href="../paper-slider/paper-slider.html">
<link rel="import" href="../paper-tabs/paper-tabs.html">
<link rel="import" href="../paper-tabs/paper-tab.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-categories.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#paper_checkbox {
left: 330px;
top: 110px;
position: absolute;
}
#paper_checkbox1 {
left: 330px;
top: 150px;
position: absolute;
}
#paper_checkbox2 {
left: 330px;
top: 190px;
position: absolute;
}
#paper_calculator {
width: 400px;
height: 560px;
left: 680px;
top: 50px;
position: absolute;
}
#paper_slider {
left: 460px;
top: 180px;
position: absolute;
}
#paper_tabs {
width: 480px;
color: rgb(255, 255, 255);
box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 2px;
left: 70px;
top: 280px;
position: absolute;
background-color: rgb(0, 188, 212);
}
#paper_tabs1 {
width: 480px;
color: rgb(255, 255, 255);
box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 2px;
left: 90px;
top: 30px;
position: absolute;
background-color: rgb(0, 188, 212);
}
#topeka_categories {
width: 300px;
height: 300px;
left: 70px;
top: 350px;
position: absolute;
}
</style>
<paper-checkbox checked label="click me" id="paper_checkbox"></paper-checkbox>
<paper-checkbox checked label="click me" id="paper_checkbox1"></paper-checkbox>
<paper-checkbox checked label="click me" id="paper_checkbox2"></paper-checkbox>
<paper-calculator responsivewidth="2000px" expression="965" id="paper_calculator"></paper-calculator>
<paper-slider value="37" id="paper_slider"></paper-slider>
<paper-tabs selected="0" selectedindex="0" id="paper_tabs1" horizontal center layout>
<paper-tab id="paper_tab5" inline flex center-center horizontal layout active>ITEM ONE</paper-tab>
<paper-tab id="paper_tab6" inline flex center-center horizontal layout>ITEM TWO</paper-tab>
<paper-tab id="paper_tab7" inline flex center-center horizontal layout>ITEM THREE</paper-tab>
<paper-tab id="paper_tab8" inline flex center-center horizontal layout>ITEM FOUR</paper-tab>
<paper-tab id="paper_tab9" inline flex center-center horizontal layout>ITEM FIVE</paper-tab>
</paper-tabs>
<paper-tabs selected="1" selectedindex="1" id="paper_tabs" horizontal center layout>
<paper-tab id="paper_tab" inline flex center-center horizontal layout>ITEM ONE</paper-tab>
<paper-tab id="paper_tab1" inline flex center-center horizontal layout active>ITEM TWO</paper-tab>
<paper-tab id="paper_tab2" inline flex center-center horizontal layout>ITEM THREE</paper-tab>
<paper-tab id="paper_tab3" inline flex center-center horizontal layout>ITEM FOUR</paper-tab>
<paper-tab id="paper_tab4" inline flex center-center horizontal layout>ITEM FIVE</paper-tab>
</paper-tabs>
<topeka-categories id="topeka_categories" vertical layout></topeka-categories>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment