Skip to content

Instantly share code, notes, and snippets.

@malcoriel
Last active August 29, 2015 14:16
Show Gist options
  • Save malcoriel/010a4cf9fbc24cb5d33f to your computer and use it in GitHub Desktop.
Save malcoriel/010a4cf9fbc24cb5d33f 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="../google-map/google-map-search.html">
<link rel="import" href="../paper-checkbox/paper-checkbox.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#core_header_panel {
width: 1010px;
height: 930px;
left: 310px;
top: -10px;
position: absolute;
}
#core_toolbar {
color: rgb(255, 255, 255);
background-color: rgb(79, 125, 201);
}
#core_drawer_panel {
position: absolute;
top: 10px;
right: 0px;
bottom: 0px;
left: 0px;
}
#section {
box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px;
left: 0px;
top: -4px;
position: absolute;
background-color: rgb(250, 250, 250);
}
#section1 {
height: 100%;
box-sizing: border-box;
background-color: rgb(221, 221, 221);
}
#google_map {
width: 400px;
height: 400px;
display: block;
left: 4px;
top: 16px;
position: absolute;
}
#google_map_search {
left: 10px;
top: 46px;
position: absolute;
}
#google_map_search1 {
left: 54px;
top: 46px;
position: absolute;
}
#google_map1 {
width: 400px;
height: 400px;
display: block;
left: 1810px;
top: 590px;
}
#google_map_search2 {
left: 80px;
top: -4px;
position: absolute;
}
#google_map_directions {
left: 1610px;
top: 640px;
}
#paper_checkbox {
left: 30px;
top: 86px;
position: absolute;
}
#paper_checkbox1 {
left: 30px;
top: 126px;
position: absolute;
}
</style>
<core-header-panel mode="standard" id="core_header_panel">
<core-toolbar id="core_toolbar">
<core-icon-button icon="menu" id="core_icon_button"></core-icon-button>
<div id="div">Header</div>
</core-toolbar>
<core-drawer-panel transition id="core_drawer_panel" touch-action>
<section id="section1" main>
<google-map id="google_map"></google-map>
<google-map-search id="google_map_search1"></google-map-search>
</section>
<section id="section" drawer>
<google-map-search id="google_map_search"></google-map-search>
<paper-checkbox label="Сальса" id="paper_checkbox"></paper-checkbox>
<paper-checkbox label="Танго" id="paper_checkbox1"></paper-checkbox>
</section>
</core-drawer-panel>
</core-header-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