Skip to content

Instantly share code, notes, and snippets.

@fusionstrings
Created June 28, 2014 10:00
Show Gist options
  • Save fusionstrings/988d8d63debd3e0e875e to your computer and use it in GitHub Desktop.
Save fusionstrings/988d8d63debd3e0e875e to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../chart-js/chart-js.html">
<link rel="import" href="../core-icons/core-icons.html">
<link rel="import" href="../core-icons/iconsets/av-icons.html">
<link rel="import" href="../paper-fab/paper-fab.html">
<link rel="import" href="../yt-video/yt-search-video.html">
<link rel="import" href="../google-map/google-map-search.html">
<link rel="import" href="../google-map/google-map-directions.html">
<link rel="import" href="../paper-tabs/paper-tabs.html">
<link rel="import" href="../paper-tabs/paper-tab.html">
<link rel="import" href="../paper-icon-button/paper-icon-button.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#chart_js {
width: 300px;
height: 200px;
left: 780px;
top: 230px;
position: absolute;
}
#chart_js1 {
width: 300px;
height: 200px;
left: 590px;
top: 200px;
position: absolute;
}
#paper_fab {
left: 390px;
top: 340px;
position: absolute;
}
#yt_search_video {
width: 300px;
height: 300px;
left: 90px;
top: 50px;
position: absolute;
}
#google_map_search {
left: 650px;
top: 240px;
position: absolute;
}
#google_map_search1 {
left: 690px;
top: 290px;
position: absolute;
}
#google_map_search2 {
left: 730px;
top: 140px;
position: absolute;
}
#google_map_directions {
left: 690px;
top: 140px;
position: absolute;
}
#paper_radio_group {
left: 1080px;
top: 530px;
}
#section {
width: 420px;
height: 630px;
border: 5px solid rgb(204, 204, 204);
left: 410px;
top: 90px;
position: absolute;
}
#paper_tabs {
color: rgb(255, 255, 255);
box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 2px;
background-color: rgb(0, 188, 212);
}
#div {
left: 440px;
top: 130px;
position: absolute;
}
</style>
<chart-js kind="Radar" id="chart_js"></chart-js>
<chart-js kind="Radar" id="chart_js1"></chart-js>
<paper-fab icon="av:play-arrow" id="paper_fab"></paper-fab>
<yt-search-video id="yt_search_video"></yt-search-video>
<google-map-search id="google_map_search"></google-map-search>
<google-map-search id="google_map_search1"></google-map-search>
<google-map-search id="google_map_search2"></google-map-search>
<google-map-directions id="google_map_directions"></google-map-directions>
<section id="section" layout vertical>
<paper-tabs noink nobar selected="0" selectedindex="0" id="paper_tabs">
<paper-tab id="paper_tab" active>ITEM ONE</paper-tab>
<paper-tab id="paper_tab1">ITEM TWO</paper-tab>
</paper-tabs>
<section id="section1" flex relative>
<paper-icon-button icon="menu" id="paper_icon_button"></paper-icon-button>
<paper-fab icon="check" id="paper_fab1"></paper-fab>
</section>
</section>
<div id="div" layout horizontal>
</div>
</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