Skip to content

Instantly share code, notes, and snippets.

@tallstreet
Last active August 29, 2015 14:07
Show Gist options
  • Save tallstreet/932104ba0ed390ae3a16 to your computer and use it in GitHub Desktop.
Save tallstreet/932104ba0ed390ae3a16 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../chart-js/chart-js.html">
<link rel="import" href="../core-field/core-field.html">
<link rel="import" href="../core-icon/core-icon.html">
<link rel="import" href="../core-input/core-input.html">
<link rel="import" href="../core-icons/core-icons.html">
<link rel="import" href="../google-map/google-map.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#chart_js {
width: 680px;
height: 710px;
left: 70px;
top: 300px;
position: absolute;
}
#core_field {
left: 370px;
top: 190px;
position: absolute;
}
#core_tooltip {
left: 930px;
top: 1130px;
}
#section {
left: 830px;
top: 880px;
}
#google_map {
width: 400px;
height: 400px;
display: block;
left: 170px;
top: 1040px;
position: absolute;
}
</style>
<chart-js kind="Bar" id="chart_js"></chart-js>
<core-field id="core_field" icon="search" theme="core-light-theme" center horizontal layout>
<core-icon icon="search" id="core_icon"></core-icon>
<core-input willvalidate placeholder="text input" id="core_input" flex></core-input>
</core-field>
<core-selector id="core_selector" selected="0" three flex>Test THis is a description</core-selector>
<google-map latitude="37.7792717963596" longitude="-122.38371443359375" id="google_map"></google-map>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment