Skip to content

Instantly share code, notes, and snippets.

@amrud
Created August 18, 2014 03:15
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 amrud/dc557b5b0430c1d3a186 to your computer and use it in GitHub Desktop.
Save amrud/dc557b5b0430c1d3a186 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../paper-checkbox/paper-checkbox.html">
<link rel="import" href="../google-map/google-map-directions.html">
<link rel="import" href="../google-map/google-map.html">
<link rel="import" href="../speech-mic/speech-mic.html">
<link rel="import" href="../smoothie-chart/smoothie-chart.html">
<link rel="import" href="../topeka-elements/topeka-resources.html">
<link rel="import" href="../topeka-elements/topeka-leaderboard.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#paper_checkbox {
left: 240px;
top: 490px;
position: absolute;
}
#google_map_directions {
left: 550px;
top: 570px;
position: absolute;
}
#google_map_directions1 {
left: 310px;
top: 560px;
position: absolute;
}
#google_map {
width: 400px;
height: 400px;
display: block;
left: 110px;
top: 60px;
position: absolute;
}
#speech_mic {
left: 90px;
top: 500px;
position: absolute;
}
#smoothie_chart {
left: 90px;
top: 590px;
position: absolute;
}
#topeka_leaderboard {
width: 300px;
height: 300px;
left: 320px;
top: 770px;
position: absolute;
}
</style>
<paper-checkbox label="click me" id="paper_checkbox"></paper-checkbox>
<google-map-directions id="google_map_directions"></google-map-directions>
<google-map-directions id="google_map_directions1">gsfgsdfg</google-map-directions>
<google-map id="google_map"></google-map>
<speech-mic id="speech_mic"></speech-mic>
<smoothie-chart id="smoothie_chart"></smoothie-chart>
<topeka-leaderboard id="topeka_leaderboard" vertical layout></topeka-leaderboard>
</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