Skip to content

Instantly share code, notes, and snippets.

@danivicario
Last active August 29, 2015 14:14
Show Gist options
  • Save danivicario/3b09f20389fa842a9664 to your computer and use it in GitHub Desktop.
Save danivicario/3b09f20389fa842a9664 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../smoothie-chart/smoothie-chart.html">
<link rel="import" href="../cool-clock/cool-clock.html">
<link rel="import" href="../notification-elements/notification-alert.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#smoothie_chart {
left: 410px;
top: 80px;
position: absolute;
}
#cool_clock {
width: 400px;
height: 300px;
left: 720px;
top: 80px;
position: absolute;
}
#notification_alert {
left: 1220px;
top: 70px;
position: absolute;
}
</style>
<smoothie-chart id="smoothie_chart"></smoothie-chart>
<cool-clock id="cool_clock"></cool-clock>
<notification-alert message="Hi there!" icon="icon.png" name="notification" id="notification_alert"></notification-alert>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment