Skip to content

Instantly share code, notes, and snippets.

@bkrajendra
Created August 8, 2014 09:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bkrajendra/c664f78d6cfd7212a21f to your computer and use it in GitHub Desktop.
Save bkrajendra/c664f78d6cfd7212a21f to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../components/polymer/polymer.html">
<polymer-element name="my-element">
<template>
<style>
#google_map_directions {
left: 820px;
top: 260px;
position: absolute;
}
#section {
box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px;
left: 190px;
top: 60px;
position: absolute;
background-color: rgb(250, 250, 250);
}
#section1 {
box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px;
left: 100px;
top: 120px;
position: absolute;
background-color: rgb(250, 250, 250);
}
#core_field {
left: 290px;
top: 40px;
position: absolute;
}
#core_drawer_panel {
position: absolute;
top: 0px;
right: 0px;
bottom: 0px;
left: -10px;
}
#section2 {
box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px;
background-color: rgb(250, 250, 250);
}
#section3 {
height: 100%;
box-sizing: border-box;
background-color: rgb(221, 221, 221);
}
</style>
<google-map-directions id="google_map_directions"></google-map-directions>
<section id="section" drawer></section>
<core-field id="core_field" icon="search" theme="core-light-theme" center horizontal layout>
</core-field>
<section id="section1" drawer></section>
<core-drawer-panel id="core_drawer_panel">
<section id="section2" drawer></section>
<section id="section3" main></section>
</core-drawer-panel>
</template>
<script>
Polymer('my-element', {
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment