Last active
August 29, 2015 14:17
-
-
Save ramirotw/d5b0f3c4337bde01f90a 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="../paper-tabs/paper-tabs.html"> | |
<link rel="import" href="../paper-tabs/paper-tab.html"> | |
<link rel="import" href="../paper-input/paper-input.html"> | |
<link rel="import" href="../paper-button/paper-button.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="../core-icons/av-icons.html"> | |
<link rel="import" href="../paper-fab/paper-fab.html"> | |
<link rel="import" href="../paper-item/paper-item.html"> | |
<link rel="import" href="../paper-progress/paper-progress.html"> | |
<link rel="import" href="../paper-toast/paper-toast.html"> | |
<link rel="import" href="../paper-toggle-button/paper-toggle-button.html"> | |
<link rel="import" href="../paper-slider/paper-slider.html"> | |
<link rel="import" href="../paper-radio-group/paper-radio-group.html"> | |
<link rel="import" href="../paper-radio-button/paper-radio-button.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; | |
width: 100%; | |
height: 100%; | |
box-sizing: border-box; | |
} | |
#paper_tabs { | |
width: 480px; | |
color: rgb(255, 255, 255); | |
box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 2px; | |
left: 350px; | |
top: 140px; | |
position: absolute; | |
background-color: rgb(0, 188, 212); | |
} | |
#paper_input { | |
left: 360px; | |
top: 240px; | |
position: absolute; | |
} | |
#paper_tab { | |
width: 120px; | |
height: 40px; | |
} | |
#paper_button { | |
left: 710px; | |
top: 300px; | |
position: absolute; | |
width: 130px; | |
height: 100px; | |
background-color: rgb(255, 0, 0); | |
} | |
#paper_icon_button { | |
left: 1030px; | |
top: 300px; | |
position: absolute; | |
} | |
#paper_fab { | |
left: 960px; | |
top: 470px; | |
position: absolute; | |
} | |
#div { | |
left: 1080px; | |
top: 450px; | |
position: absolute; | |
} | |
#paper_item { | |
left: 500px; | |
top: 480px; | |
position: absolute; | |
} | |
#paper_progress { | |
left: 520px; | |
top: 450px; | |
position: absolute; | |
} | |
#paper_toast { | |
left: 920px; | |
top: 580px; | |
position: absolute; | |
} | |
#paper_toast1 { | |
left: 1080px; | |
top: 440px; | |
position: absolute; | |
} | |
#paper_tabs1 { | |
width: 480px; | |
color: rgb(255, 255, 255); | |
box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 2px; | |
left: 1670px; | |
top: 700px; | |
background-color: rgb(0, 188, 212); | |
} | |
#paper_toggle_button { | |
left: 700px; | |
top: 520px; | |
position: absolute; | |
} | |
#paper_slider { | |
left: 600px; | |
top: 600px; | |
position: absolute; | |
} | |
#paper_radio_group { | |
left: 880px; | |
top: 620px; | |
position: absolute; | |
} | |
#div1 { | |
height: 100%; | |
width: 100%; | |
overflow: hidden; | |
left: 1870px; | |
top: 720px; | |
} | |
#paper_item1 { | |
left: 1230px; | |
top: 280px; | |
position: absolute; | |
} | |
</style> | |
<paper-tabs selected="1" selectedindex="1" id="paper_tabs" horizontal center layout> | |
<paper-tab id="paper_tab4" inline flex center-center horizontal layout>ITEM FIVE</paper-tab> | |
<paper-tab id="paper_tab" inline flex center-center horizontal layout active>TEST</paper-tab> | |
</paper-tabs> | |
<paper-input label="Consumo" id="paper_input"></paper-input> | |
<paper-button id="paper_button">button</paper-button> | |
<paper-icon-button icon="menu" id="paper_icon_button"></paper-icon-button> | |
<paper-fab icon="av:play-arrow" id="paper_fab"></paper-fab> | |
<div id="div" layout horizontal> | |
<paper-fab icon="check" id="paper_fab1"></paper-fab> | |
</div> | |
<paper-item id="paper_item" icon="settings" label="Item"></paper-item> | |
<paper-progress secondaryprogress="50" id="paper_progress"></paper-progress> | |
<paper-toast text="Toast!" id="paper_toast" class="core-transition core-transition-bottom" touch-action="none"></paper-toast> | |
<paper-toast text="Toast!" id="paper_toast1" touch-action="none" class="core-transition core-transition-bottom"></paper-toast> | |
<paper-toggle-button id="paper_toggle_button" touch-action="pan-y"></paper-toggle-button> | |
<paper-slider value="29" id="paper_slider"></paper-slider> | |
<paper-radio-group selected="Large" valueattr="label" selectedindex="2" id="paper_radio_group"> | |
<paper-radio-button label="Small" id="paper_radio_button"></paper-radio-button> | |
<paper-radio-button label="Medium" id="paper_radio_button1"></paper-radio-button> | |
<paper-radio-button checked label="Large" id="paper_radio_button2"></paper-radio-button> | |
</paper-radio-group> | |
<paper-item id="paper_item1" icon="settings" label="Item"></paper-item> | |
</template> | |
<script> | |
Polymer({ | |
}); | |
</script> | |
</polymer-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment