Skip to content

Instantly share code, notes, and snippets.

@oddgoo
Created July 24, 2014 01:21
Show Gist options
  • Save oddgoo/f1dc501170b77533b009 to your computer and use it in GitHub Desktop.
Save oddgoo/f1dc501170b77533b009 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../cool-clock/cool-clock.html">
<link rel="import" href="../smoothie-chart/smoothie-chart.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#smoothie_chart {
left: 210px;
top: 100px;
position: absolute;
}
#google_map_directions {
left: 1300px;
top: 660px;
}
#cool_clock {
width: 170px;
height: 170px;
left: 80px;
top: 210px;
position: absolute;
}
</style>
<cool-clock skin="classic" id="cool_clock"></cool-clock>
<smoothie-chart id="smoothie_chart"></smoothie-chart>
</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