Last active
August 29, 2015 14:11
-
-
Save dhagan/c04e3b48114bdb7fccf8 to your computer and use it in GitHub Desktop.
designer
This file contains 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="../chart-js/chart-js.html"> | |
<link rel="import" href="../cool-clock/cool-clock.html"> | |
<link rel="import" href="../topeka-elements/avatars.html"> | |
<link rel="import" href="../core-icon/core-icon.html"> | |
<link rel="import" href="../topeka-elements/category-images.html"> | |
<link rel="import" href="../topeka-elements/theme.html"> | |
<link rel="import" href="../topeka-elements/topeka-resources.html"> | |
<link rel="import" href="../topeka-elements/topeka-app.html"> | |
<link rel="import" href="../topeka-elements/topeka-datasource.html"> | |
<link rel="import" href="../paper-button/paper-button.html"> | |
<link rel="import" href="../paper-calculator/paper-calculator.html"> | |
<link rel="import" href="../google-map/google-map-search.html"> | |
<link rel="import" href="../google-map/google-map.html"> | |
<link rel="import" href="../google-map/google-map-directions.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: 20px; | |
top: 30px; | |
position: absolute; | |
} | |
#cool_clock { | |
width: 400px; | |
height: 300px; | |
left: 1020px; | |
top: 220px; | |
position: absolute; | |
} | |
#core_icon { | |
height: 64px; | |
width: 64px; | |
left: 590px; | |
top: 480px; | |
position: absolute; | |
} | |
#core_icon1 { | |
height: 256px; | |
width: 256px; | |
left: 670px; | |
top: 400px; | |
position: absolute; | |
} | |
#core_icon2 { | |
height: 64px; | |
width: 64px; | |
left: 1130px; | |
top: 720px; | |
position: absolute; | |
} | |
#topeka_app { | |
width: 300px; | |
height: 300px; | |
min-height: 450px; | |
left: 810px; | |
top: 800px; | |
position: absolute; | |
} | |
#div { | |
height: 100%; | |
width: 100%; | |
overflow: hidden; | |
left: 70px; | |
top: 60px; | |
position: absolute; | |
} | |
#paper_button { | |
left: 300px; | |
top: 400px; | |
position: absolute; | |
} | |
#paper_calculator { | |
width: 400px; | |
height: 560px; | |
left: 270px; | |
top: 540px; | |
position: absolute; | |
} | |
#google_map_search { | |
left: 570px; | |
top: 330px; | |
position: absolute; | |
} | |
#google_map { | |
width: 900px; | |
height: 610px; | |
display: block; | |
left: 430px; | |
top: 170px; | |
position: absolute; | |
} | |
#google_map_directions { | |
left: 370px; | |
top: 90px; | |
position: absolute; | |
} | |
#google_map_directions1 { | |
left: 1380px; | |
top: 1050px; | |
position: absolute; | |
} | |
#google_map_search1 { | |
left: 1300px; | |
top: 930px; | |
position: absolute; | |
} | |
#google_map_search2 { | |
left: 1320px; | |
top: 830px; | |
position: absolute; | |
} | |
</style> | |
<chart-js id="chart_js"></chart-js> | |
<cool-clock id="cool_clock"></cool-clock> | |
<core-icon icon="avatars:avatar-1" id="core_icon" designmeta="topeka-avatar"></core-icon> | |
<core-icon icon="category-images:food" id="core_icon1" designmeta="topeka-image"></core-icon> | |
<core-icon icon="avatars:avatar-1" id="core_icon2" designmeta="topeka-avatar"></core-icon> | |
<topeka-app selected="profile" disableleaderboard id="topeka_app" categories="[]" vertical layout></topeka-app> | |
<div id="div"> | |
<topeka-datasource url="../topeka-elements/categories.json" id="datasource" hidden></topeka-datasource> | |
</div> | |
<paper-button id="paper_button">button</paper-button> | |
<paper-calculator responsivewidth="2000px" expression="856742" id="paper_calculator"></paper-calculator> | |
<google-map-search id="google_map_search"></google-map-search> | |
<google-map id="google_map"></google-map> | |
<google-map-directions id="google_map_directions"></google-map-directions> | |
<google-map-directions id="google_map_directions1"></google-map-directions> | |
<google-map-search id="google_map_search1"></google-map-search> | |
<google-map-search id="google_map_search2"></google-map-search> | |
</template> | |
<script> | |
Polymer({ | |
}); | |
</script> | |
</polymer-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment