Last active
August 29, 2015 14:15
-
-
Save JoseRFJuniorLLMs/81e8d2387ce182639867 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 href="../paper-tabs/paper-tabs.html" rel="import"> | |
<link href="../paper-tabs/paper-tab.html" rel="import"> | |
<link href="../paper-toast/paper-toast.html" rel="import"> | |
<link href="../paper-input/paper-input.html" rel="import"> | |
<link href="../topeka-elements/category-icons.html" rel="import"> | |
<link href="../core-icon/core-icon.html" rel="import"> | |
<link href="../core-menu/core-submenu.html" rel="import"> | |
<link href="../core-item/core-item.html" rel="import"> | |
<link href="../core-pages/core-pages.html" rel="import"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
#design_host { | |
position: absolute; | |
width: 100%; | |
height: 100%; | |
box-sizing: border-box; | |
} | |
#section { | |
width: 930px; | |
height: 770px; | |
border: 5px solid rgb(204, 204, 204); | |
left: 0px; | |
top: -20px; | |
position: absolute; | |
} | |
#paper_tabs { | |
background-color: rgb(0, 188, 212); | |
color: rgb(255, 255, 255); | |
box-shadow: 0px 3px 2px rgba(0, 0, 0, 0.2); | |
} | |
#paper_toast { | |
left: 5px; | |
top: -53px; | |
position: absolute; | |
} | |
#paper_input { | |
left: 35px; | |
top: 17px; | |
position: absolute; | |
width: 420px; | |
height: 60px; | |
} | |
#paper_input1 { | |
left: 465px; | |
top: 17px; | |
position: absolute; | |
width: 250px; | |
height: 40px; | |
} | |
#paper_input2 { | |
left: 35px; | |
top: 57px; | |
position: absolute; | |
width: 220px; | |
height: 40px; | |
} | |
#paper_input3 { | |
left: 265px; | |
top: 57px; | |
position: absolute; | |
width: 450px; | |
height: 40px; | |
} | |
#google_map_search1 { | |
left: 505px; | |
top: 347px; | |
position: absolute; | |
width: 160px; | |
height: 40px; | |
} | |
#topeka_datasource { | |
left: 635px; | |
top: 377px; | |
position: absolute; | |
width: 190px; | |
height: 130px; | |
} | |
#core_icon_button { | |
left: 397px; | |
top: 269px; | |
position: absolute; | |
} | |
#core_menu { | |
font-size: 16px; | |
left: 747px; | |
top: 29px; | |
position: absolute; | |
} | |
#core_menu1 { | |
font-size: 16px; | |
left: 1090px; | |
top: 590px; | |
} | |
#chart_js { | |
width: 300px; | |
height: 200px; | |
left: 245px; | |
top: 277px; | |
position: absolute; | |
} | |
</style> | |
<section id="section" vertical layout> | |
<paper-tabs noink nobar selected="0" selectedindex="0" id="paper_tabs" layout center horizontal> | |
<paper-tab id="paper_tab" active layout horizontal center-center flex inline>Cadastro</paper-tab> | |
<paper-tab id="paper_tab1" layout horizontal center-center flex inline>Relatório</paper-tab> | |
</paper-tabs> | |
<section id="section1" relative flex> | |
<paper-toast text="Toast!" id="paper_toast" class="core-transition-bottom core-transition" touch-action="none"></paper-toast> | |
<paper-input label="Nome.:" id="paper_input"></paper-input> | |
<paper-input label="Email.:" id="paper_input1"></paper-input> | |
<paper-input label="Telefone.:" id="paper_input2"></paper-input> | |
<paper-input label="Localização.:" id="paper_input3"></paper-input> | |
<section id="section2" designmeta="quiz-demo-grid" vertical layout> | |
<div id="toolbar" layout center center-justified horizontal class="tall-toolbar categories"> | |
<span id="span">Quiz Demo</span> | |
</div> | |
</section> | |
<core-menu selected="0" selectedindex="0" id="core_menu"> | |
<core-submenu opened active id="core_submenu" icon="settings" label="Topics"> | |
<core-item id="core_item" horizontal center layout label="Topic 1"></core-item> | |
<core-item id="core_item1" horizontal center layout label="Topic 2"></core-item> | |
</core-submenu> | |
<core-submenu id="core_submenu1" icon="settings" label="Favorites"> | |
<core-item id="core_item2" horizontal center layout label="Favorite 1"></core-item> | |
<core-item id="core_item3" horizontal center layout label="Favorite 2"></core-item> | |
<core-item id="core_item4" horizontal center layout label="Favorite 3"></core-item> | |
</core-submenu> | |
</core-menu> | |
<core-pages selected="0" notap id="core_pages"> | |
</core-pages> | |
</section> | |
</section> | |
</template> | |
<script> | |
Polymer({ | |
Fortaleza: '' | |
}); | |
</script> | |
</polymer-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment