Last active
August 29, 2015 14:11
-
-
Save nakosung/4ccf03b4a65139860a4d to your computer and use it in GitHub Desktop.
designer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link rel="import" href="../core-input/core-input.html"> | |
<link rel="import" href="../topeka-elements/topeka-datasource.html"> | |
<link rel="import" href="../google-map/google-map.html"> | |
<link rel="import" href="../paper-slider/paper-slider.html"> | |
<link rel="import" href="../yt-video/yt-search-video.html"> | |
<link rel="import" href="../core-icon-button/core-icon-button.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; | |
width: 100%; | |
height: 100%; | |
box-sizing: border-box; | |
top: 0px; | |
left: 0px; | |
} | |
#input { | |
padding: 15px; | |
left: 700px; | |
top: 510px; | |
position: absolute; | |
} | |
#topeka_datasource { | |
left: 260px; | |
top: 250px; | |
position: absolute; | |
} | |
#topeka_datasource1 { | |
left: 250px; | |
top: 240px; | |
position: absolute; | |
} | |
#google_map { | |
width: 400px; | |
height: 400px; | |
display: block; | |
left: 440px; | |
top: 60px; | |
position: absolute; | |
} | |
#paper_slider { | |
left: 910px; | |
top: 190px; | |
position: absolute; | |
} | |
#paper_slider1 { | |
left: 910px; | |
top: 240px; | |
position: absolute; | |
} | |
#yt_search_video { | |
width: 300px; | |
height: 300px; | |
left: 1190px; | |
top: 450px; | |
position: absolute; | |
} | |
#input1 { | |
padding: 15px; | |
left: 440px; | |
top: 490px; | |
position: absolute; | |
} | |
#core_icon_button { | |
left: 900px; | |
top: 420px; | |
position: absolute; | |
} | |
</style> | |
<input id="input" value="{{ $.paper_slider.value }}" placeholder="type something..." is="core-input"> | |
<topeka-datasource url="../topeka-elements/categories.json" id="topeka_datasource" hidden></topeka-datasource> | |
<topeka-datasource url="../topeka-elements/categories.json" id="topeka_datasource1" hidden></topeka-datasource> | |
<google-map latitude="22" longitude="0" id="google_map"></google-map> | |
<paper-slider value="{{ $.google_map.longitude }}" id="paper_slider1"></paper-slider> | |
<yt-search-video id="yt_search_video"></yt-search-video> | |
<paper-slider value="{{ $.google_map.latitude }}" id="paper_slider"></paper-slider> | |
<input id="input1" value="{{ $.google_map.zoom }}" placeholder="type something..." is="core-input"> | |
<core-icon-button icon="menu" id="core_icon_button" theme="core-light-theme"></core-icon-button> | |
</template> | |
<script> | |
Polymer({ | |
}); | |
</script> | |
</polymer-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment