Skip to content

Instantly share code, notes, and snippets.

@jacobdam
Last active August 29, 2015 14:21
Show Gist options
  • Save jacobdam/9ab8fcb89a22723e68ed to your computer and use it in GitHub Desktop.
Save jacobdam/9ab8fcb89a22723e68ed to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../cool-clock/cool-clock.html">
<link rel="import" href="../google-map/google-map.html">
<link rel="import" href="../paper-input/paper-input.html">
<link rel="import" href="../speech-mic/speech-mic.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#cool_clock {
width: 400px;
height: 300px;
left: 290px;
top: 150px;
position: absolute;
}
#google_map {
width: 400px;
height: 400px;
display: block;
left: 430px;
top: 160px;
position: absolute;
}
#speech_mic {
left: 1230px;
top: 240px;
position: absolute;
}
#paper_input {
left: 1070px;
top: 240px;
position: absolute;
}
</style>
<cool-clock id="cool_clock"></cool-clock>
<google-map latitude="37.427851532964645" longitude="-122.17909407226563" id="google_map"></google-map>
<paper-input label="Type something..." id="paper_input"></paper-input>
<speech-mic id="speech_mic"></speech-mic>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment