Skip to content

Instantly share code, notes, and snippets.

@stqism
Last active August 29, 2015 14:15
Show Gist options
  • Save stqism/fe12eacf9d16cee4e8ba to your computer and use it in GitHub Desktop.
Save stqism/fe12eacf9d16cee4e8ba to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../notification-elements/notification-alert.html">
<link rel="import" href="../topeka-elements/category-images.html">
<link rel="import" href="../core-icon/core-icon.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">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#notification_alert {
left: 470px;
top: 330px;
position: absolute;
}
#notification_alert1 {
left: 740px;
top: 490px;
position: absolute;
}
#notification_alert2 {
left: 460px;
top: 370px;
position: absolute;
}
#core_icon {
height: 256px;
width: 256px;
left: 370px;
top: 310px;
position: absolute;
}
#topeka_app {
width: 300px;
height: 300px;
min-height: 450px;
left: 330px;
top: 180px;
position: absolute;
}
</style>
<notification-alert message="Hi there!" icon="icon.png" name="notification" id="notification_alert"></notification-alert>
<notification-alert message="Hi there!" icon="icon.png" name="notification" id="notification_alert1"></notification-alert>
<notification-alert message="Hi there!" icon="icon.png" name="notification" id="notification_alert2"></notification-alert>
<core-icon icon="category-images:food" id="core_icon" designmeta="topeka-image"></core-icon>
<topeka-app selected="profile" disableleaderboard id="topeka_app" vertical layout></topeka-app>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment