Skip to content

Instantly share code, notes, and snippets.

@hanikesn
Created July 16, 2014 19:45
Show Gist options
  • Save hanikesn/18df0565c137cfc2f41a to your computer and use it in GitHub Desktop.
Save hanikesn/18df0565c137cfc2f41a to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../core-icons/core-icons.html">
<link rel="import" href="../core-icon/core-icon.html">
<link rel="import" href="../core-animated-pages/core-animated-pages.html">
<link rel="import" href="../core-animated-pages/transitions/hero-transition.html">
<link rel="import" href="../core-animated-pages/transitions/cross-fade.html">
<link rel="import" href="../core-animated-pages/transitions/slide-down.html">
<link rel="import" href="../core-animated-pages/transitions/slide-up.html">
<link rel="import" href="../core-animated-pages/transitions/tile-cascade.html">
<link rel="import" href="../paper-slider/paper-slider.html">
<link rel="import" href="../yt-video/yt-search-video.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#core_animated_pages {
width: 420px;
height: 582px;
overflow: hidden;
left: 40px;
top: -70px;
position: absolute;
background-color: rgb(238, 238, 238);
}
#section1 {
left: 60px;
top: -180px;
}
#section2 {
left: 230px;
top: 70px;
position: absolute;
}
#core_icon {
height: 24px;
width: 24px;
left: 830px;
top: 220px;
position: absolute;
}
#paper_slider {
left: 810px;
top: 360px;
position: absolute;
}
#yt_search_video {
width: 300px;
height: 300px;
left: 540px;
top: 470px;
position: absolute;
}
</style>
<core-icon icon="search" id="core_icon"></core-icon>
<core-animated-pages notap id="core_animated_pages">
</core-animated-pages>
<paper-slider immediatevalue="86" value="86" id="paper_slider"></paper-slider>
<section id="section2">
</section>
<yt-search-video id="yt_search_video"></yt-search-video>
</template>
<script>
Polymer('my-element', {
});
</script>
</polymer-element><section id="section1" class="drag-element">
</section>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment