Skip to content

Instantly share code, notes, and snippets.

@keigezellig
Last active August 29, 2015 14:17
Show Gist options
  • Save keigezellig/a8bb98826291b86d162f to your computer and use it in GitHub Desktop.
Save keigezellig/a8bb98826291b86d162f to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../smoothie-chart/smoothie-chart.html">
<link rel="import" href="../google-map/google-map.html">
<link rel="import" href="../notification-elements/notification-alert.html">
<link rel="import" href="../cool-clock/cool-clock.html">
<link rel="import" href="../core-menu-button/core-menu-button.html">
<link rel="import" href="../core-icons/core-icons.html">
<link rel="import" href="../core-item/core-item.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#smoothie_chart {
left: 90px;
top: 270px;
position: absolute;
width: 300px;
height: 120px;
}
#google_map {
width: 400px;
height: 400px;
display: block;
left: 520px;
top: 100px;
position: absolute;
}
#notification_alert {
left: 860px;
top: 700px;
position: absolute;
}
#notification_alert1 {
left: 790px;
top: 650px;
position: absolute;
}
#notification_alert2 {
left: 880px;
top: 680px;
position: absolute;
}
#cool_clock {
width: 400px;
height: 300px;
left: 510px;
top: 570px;
position: absolute;
}
#cool_clock1 {
width: 400px;
height: 300px;
left: 120px;
top: 490px;
position: absolute;
}
#core_menu_button {
left: 840px;
top: 650px;
position: absolute;
}
</style>
<smoothie-chart id="smoothie_chart"></smoothie-chart>
<google-map latitude="37.59397663254579" longitude="-122.14338850585938" zoom="11" id="google_map"></google-map>
<notification-alert message="Hi there!" icon="icon.png" name="notification" id="notification_alert"></notification-alert>
<notification-alert message="Hi there!" icon="icon.png" name="notification" id="notification_alert1"></notification-alert>
<notification-alert message="Hi there!" icon="icon.png" name="notification" id="notification_alert2"></notification-alert>
<cool-clock id="cool_clock"></cool-clock>
<cool-clock id="cool_clock1">kllk</cool-clock>
<core-menu-button opened id="core_menu_button" icon="more-vert" selected="0" relative>
<core-item id="core_item" icon="content-cut" label="Cut" horizontal center layout></core-item>
<core-item id="core_item1" icon="content-copy" label="Copy" horizontal center layout></core-item>
<core-item id="core_item2" icon="content-paste" label="Paste" horizontal center layout></core-item>
</core-menu-button>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment