Skip to content

Instantly share code, notes, and snippets.

@HenriqueLimas
Last active August 29, 2015 14:10
Show Gist options
  • Save HenriqueLimas/9c5d3cd0a31d14ff6c89 to your computer and use it in GitHub Desktop.
Save HenriqueLimas/9c5d3cd0a31d14ff6c89 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../core-icon-button/core-icon-button.html">
<link rel="import" href="../core-toolbar/core-toolbar.html">
<link rel="import" href="../core-header-panel/core-header-panel.html">
<link rel="import" href="../core-drawer-panel/core-drawer-panel.html">
<link rel="import" href="../google-map/google-map.html">
<link rel="import" href="../core-icons/core-icons.html">
<link rel="import" href="../core-icons/av-icons.html">
<link rel="import" href="../paper-fab/paper-fab.html">
<link rel="import" href="../topeka-elements/avatars.html">
<link rel="import" href="../core-icon/core-icon.html">
<link rel="import" href="../paper-item/paper-item.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#core_header_panel {
width: 100%;
height: 130px;
left: 0px;
top: 0px;
position: absolute;
}
#core_toolbar {
color: rgb(255, 255, 255);
height: 110px;
left: 0px;
top: 0px;
position: absolute;
width: 100%;
background-color: rgb(79, 125, 201);
}
#core_drawer_panel {
position: absolute;
top: 110px;
right: 0px;
bottom: 0px;
left: 0px;
height: 90%;
}
#section {
box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px;
left: 0px;
top: 0px;
position: absolute;
background-color: rgb(250, 250, 250);
}
#section1 {
height: 90%;
box-sizing: border-box;
width: 100%;
background-color: rgb(221, 221, 221);
}
#google_map {
height: 100%;
left: 0px;
top: 0px;
position: absolute;
width: 100%;
}
#paper_icon_button {
left: 1630px;
top: 800px;
}
#core_icon {
height: 64px;
width: 64px;
left: 88px;
top: 100px;
position: absolute;
}
#paper_toast {
left: 1660px;
top: 800px;
}
#core_submenu {
left: 1640px;
top: 740px;
}
#core_toolbar1 {
right: 0px;
color: rgb(255, 255, 255);
fill: rgb(255, 255, 255);
top: 0px;
position: absolute;
height: 140px;
left: 0px;
background-color: rgb(138, 195, 77);
}
#paper_item {
top: 170px;
position: absolute;
height: 40px;
width: 100%;
left: 0px;
}
#paper_item1 {
left: 0px;
top: 210px;
position: absolute;
height: 40px;
width: 100%;
}
#paper_fab {
left: 90%;
top: 80%;
position: absolute;
}
</style>
<core-header-panel mode="standard" id="core_header_panel" center center-justified>
<core-toolbar id="core_toolbar" horizontal layout center start-justified>
<div id="div" horizontal layout center center-justified>Reverse</div>
</core-toolbar>
</core-header-panel>
<core-drawer-panel transition id="core_drawer_panel" touch-action>
<section id="section1" main>
<google-map latitude="-28.66891205271148" longitude="-49.403972220312426" zoom="15" showcentermarker id="google_map">jhjhjh</google-map>
<paper-fab icon="search" id="paper_fab"></paper-fab>
</section>
<section id="section" drawer>
<core-toolbar id="core_toolbar1">
<core-icon icon="avatars:avatar-1" id="core_icon" designmeta="topeka-avatar" center vertical layout center-justified></core-icon>
</core-toolbar>
<paper-item id="paper_item" icon="settings" label="Item" horizontal layout center start-justified>Home</paper-item>
<paper-item id="paper_item1" icon="settings" label="Item" horizontal layout center>Procurar</paper-item>
</section>
</core-drawer-panel>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment