Skip to content

Instantly share code, notes, and snippets.

@Sandtalker
Last active August 29, 2015 14:22
Show Gist options
  • Save Sandtalker/b2b2d98a32e11c14adec to your computer and use it in GitHub Desktop.
Save Sandtalker/b2b2d98a32e11c14adec to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../paper-button/paper-button.html">
<link rel="import" href="../paper-input/paper-input.html">
<link rel="import" href="../paper-calculator/paper-calculator.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/avatars.html">
<link rel="import" href="../core-icon/core-icon.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
opacity: 1;
}
#paper_button {
left: 810px;
top: 450px;
position: absolute;
}
#paper_input {
left: 740px;
top: 330px;
position: absolute;
}
#core_icon {
height: 64px;
width: 64px;
left: 1500px;
top: 10px;
position: absolute;
}
#paper_calculator {
width: 400px;
height: 560px;
left: 1080px;
top: 180px;
position: absolute;
}
#paper_input1 {
left: 1350px;
top: 20px;
position: absolute;
}
#section {
width: 420px;
height: 630px;
border: 5px solid rgb(204, 204, 204);
left: 230px;
top: 160px;
position: absolute;
}
#paper_tabs {
color: rgb(255, 255, 255);
box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 2px;
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: 0px;
top: 0px;
position: absolute;
background-color: rgb(0, 188, 212);
}
</style>
<paper-button id="paper_button">button</paper-button>
<paper-input label="Type something..." id="paper_input"></paper-input>
<paper-calculator responsivewidth="2000px" id="paper_calculator"></paper-calculator>
<section id="section" layout vertical>
<paper-tabs noink nobar selected="0" selectedindex="0" id="paper_tabs" horizontal center layout>
<paper-tab id="paper_tab" inline flex center-center horizontal layout active>ITEM ONE</paper-tab>
<paper-tab id="paper_tab1" inline flex center-center horizontal layout>ITEM TWO</paper-tab>
</paper-tabs>
<section id="section1" flex relative>
</section>
</section>
<core-icon icon="avatars:avatar-1" id="core_icon" designmeta="topeka-avatar"></core-icon>
<paper-tabs selected="3" selectedindex="3" id="paper_tabs1" horizontal center layout>
<paper-tab id="paper_tab2" inline flex center-center horizontal layout>ITEM ONE</paper-tab>
<paper-tab id="paper_tab3" inline flex center-center horizontal layout>ITEM TWO</paper-tab>
<paper-tab id="paper_tab4" inline flex center-center horizontal layout>ITEM THREE</paper-tab>
<paper-tab id="paper_tab5" inline flex center-center horizontal layout active>ITEM FOUR</paper-tab>
<paper-tab id="paper_tab6" inline flex center-center horizontal layout>ITEM FIVE</paper-tab>
</paper-tabs>
<paper-input label="Twoje imię i nazwisko" id="paper_input1"></paper-input>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment