Skip to content

Instantly share code, notes, and snippets.

@tallstreet
Last active August 29, 2015 14:07
Show Gist options
  • Save tallstreet/a5b4d66496b30c5cfd91 to your computer and use it in GitHub Desktop.
Save tallstreet/a5b4d66496b30c5cfd91 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="/elements/widgets/warrior-image/warrior-image.html">
<link rel="import" href="/elements/widgets/warrior-header/warrior-header.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
top: 0px;
left: 0px;
}
#warrior_image {
left: 0px;
top: 0px;
position: absolute;
}
#warrior_header {
left: 230px;
top: 0px;
position: absolute;
width: 100%;
height: 100%;
}
</style>
<warrior-image id="warrior_image"></warrior-image>
<warrior-header id="warrior_header">Crazy Whacky Way To GeDFDDFDt Paid!</warrior-header>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment