Skip to content

Instantly share code, notes, and snippets.

@amicojeko
Last active August 29, 2015 14:07
Show Gist options
  • Save amicojeko/a0d1e594f3a29f533bed to your computer and use it in GitHub Desktop.
Save amicojeko/a0d1e594f3a29f533bed to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../chart-js/chart-js.html">
<link rel="import" href="../yt-video/yt-search-video.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;
}
#chart_js {
width: 300px;
height: 200px;
left: 450px;
top: 190px;
position: absolute;
}
#yt_search_video {
width: 300px;
height: 300px;
left: 620px;
top: 670px;
position: absolute;
}
#smoothie_chart {
left: 670px;
top: 450px;
position: absolute;
}
</style>
<chart-js kind="Bar" id="chart_js"></chart-js>
<yt-search-video id="yt_search_video"></yt-search-video>
<smoothie-chart id="smoothie_chart"></smoothie-chart>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment