Skip to content

Instantly share code, notes, and snippets.

@oskosk
Created July 8, 2014 22:27
Show Gist options
  • Save oskosk/acf77a7785dc66fc1e68 to your computer and use it in GitHub Desktop.
Save oskosk/acf77a7785dc66fc1e68 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../polymer/polymer.html">
<link rel="import" href="../google-map/google-map.html">
<polymer-element name="my-element">
<template>
<style>
#speech_mic {
left: 450px;
top: 280px;
position: absolute;
}
#yt_search_video {
width: 300px;
height: 300px;
left: 610px;
top: 150px;
position: absolute;
}
#google_map {
width: 400px;
height: 400px;
display: block;
left: 40px;
top: 50px;
position: absolute;
}
</style>
<speech-mic id="speech_mic"></speech-mic>
<yt-search-video id="yt_search_video"></yt-search-video>
<google-map id="google_map"></google-map>
</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