Skip to content

Instantly share code, notes, and snippets.

@LazerSharp
Created August 27, 2014 06:41
Show Gist options
  • Save LazerSharp/e4974a48df1c367207ef to your computer and use it in GitHub Desktop.
Save LazerSharp/e4974a48df1c367207ef to your computer and use it in GitHub Desktop.
designer
<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: static;
background-color: rgb(195, 34, 34);
}
#topeka_app {
width: 300px;
height: 300px;
min-height: 450px;
left: 330px;
top: 110px;
position: absolute;
opacity: 0.7;
}
</style>
<topeka-app id="topeka_app" horizontal layout start-justified center></topeka-app>
</template>
<script>
Polymer('my-element', {
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment