Skip to content

Instantly share code, notes, and snippets.

@halton
Last active May 13, 2016 01:40
Show Gist options
  • Save halton/3d4a3c5a006a7774ae842b1a2181f7fa to your computer and use it in GitHub Desktop.
Save halton/3d4a3c5a006a7774ae842b1a2181f7fa 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/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="../core-icon-button/core-icon-button.html">
<link rel="import" href="../core-icons/core-icons.html">
<link rel="import" href="../core-icon/core-icon.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#notification_alert {
left: 650px;
top: 390px;
position: absolute;
}
#notification_alert1 {
left: 630px;
top: 360px;
position: absolute;
}
#div {
height: 100%;
width: 100%;
overflow: hidden;
left: 60px;
top: 10px;
position: absolute;
}
#core_icon_button {
left: 690px;
top: 420px;
position: absolute;
}
#core_icon {
left: 600px;
top: 450px;
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>
<div id="div">
<topeka-app selected="profile" connected="{{ $.datasource.connected }}" disableleaderboard id="app" categories="[]" fit vertical layout></topeka-app>
<topeka-datasource url="../topeka-elements/categories.json" id="datasource" hidden></topeka-datasource>
</div>
<paper-icon-button icon="info-outline" id="core_icon_button" theme="core-light-theme"></paper-icon-button>
<core-icon icon="search" id="core_icon"></core-icon>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment