Skip to content

Instantly share code, notes, and snippets.

@vijo
Created November 27, 2014 08:29
Show Gist options
  • Save vijo/f175031568b4386f75ed to your computer and use it in GitHub Desktop.
Save vijo/f175031568b4386f75ed to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../google-map/google-map.html">
<link rel="import" href="../cool-clock/cool-clock.html">
<link rel="import" href="../core-icon-button/core-icon-button.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#google_map {
width: 400px;
height: 400px;
display: block;
left: 30px;
top: 30px;
position: absolute;
}
#cool_clock {
width: 400px;
height: 300px;
left: 590px;
top: 30px;
position: absolute;
}
#core_icon_button {
left: 540px;
top: 320px;
position: absolute;
}
</style>
<google-map id="google_map"></google-map>
<cool-clock id="cool_clock"></cool-clock>
<core-icon-button icon="menu" id="core_icon_button" theme="core-light-theme"></core-icon-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