Skip to content

Instantly share code, notes, and snippets.

@redaready
Last active August 29, 2015 14:14
Show Gist options
  • Save redaready/8fbbf3e6fa518108cacb to your computer and use it in GitHub Desktop.
Save redaready/8fbbf3e6fa518108cacb to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../google-map/google-map.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-categories.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#google_map {
width: 100%;
height: 100%;
left: 0px;
top: 0px;
position: absolute;
opacity: 0.7;
}
#core_icon {
height: 64px;
width: 64px;
left: 1170px;
top: 530px;
position: absolute;
}
#core_icon1 {
height: 256px;
width: 256px;
left: 1230px;
top: 640px;
position: absolute;
}
#topeka_categories {
width: 300px;
height: 300px;
left: 1290px;
top: 550px;
position: absolute;
}
</style>
<google-map latitude="37.03915595200241" longitude="-120.71791243164063" id="google_map" horizontal layout center reverse wrap></google-map>
<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>
<topeka-categories id="topeka_categories" vertical layout></topeka-categories>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment