Skip to content

Instantly share code, notes, and snippets.

@tallstreet
Last active August 29, 2015 14:07
Show Gist options
  • Save tallstreet/c9a2bab144005f2a70bb to your computer and use it in GitHub Desktop.
Save tallstreet/c9a2bab144005f2a70bb to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="/bower_components/notification-elements/notification-alert.html">
<link rel="import" href="/bower_components/yt-video/yt-search-video.html">
<link rel="import" href="/bower_components/speech-mic/speech-mic.html">
<link rel="import" href="/bower_components/cool-clock/cool-clock.html">
<link rel="import" href="/bower_components/google-map/google-map.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#code_mirror {
width: 400px;
height: 300px;
left: 110px;
top: 350px;
position: absolute;
}
#notification_alert {
left: 340px;
top: 940px;
position: absolute;
}
#notification_alert1 {
left: 300px;
top: 860px;
position: absolute;
}
#yt_search_video {
width: 300px;
height: 300px;
left: 180px;
top: 740px;
position: absolute;
}
#speech_mic {
left: 380px;
top: 190px;
position: absolute;
}
#speech_mic1 {
left: 390px;
top: 490px;
position: absolute;
}
#cool_clock {
width: 400px;
height: 300px;
left: 230px;
top: 50px;
position: absolute;
}
#yt_search_video1 {
width: 300px;
height: 300px;
left: 240px;
top: 340px;
position: absolute;
}
#google_map {
width: 400px;
height: 400px;
display: block;
left: 410px;
top: 40px;
position: absolute;
}
</style>
<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>
<yt-search-video imfeelinglucky="jGlvLXE82ug" id="yt_search_video" jglvlxe82ug>jGlvLXE82ug</yt-search-video>
<speech-mic id="speech_mic"></speech-mic>
<speech-mic id="speech_mic1"></speech-mic>
<cool-clock skin="simonbaird_com" id="cool_clock"></cool-clock>
<yt-search-video imfeelinglucky="test2" id="yt_search_video1"></yt-search-video>
<google-map latitude="37.772759006196466" longitude="-122.56498884765625" maptype="hybrid" id="google_map"></google-map>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment