Skip to content

Instantly share code, notes, and snippets.

@tallstreet
Created October 11, 2014 00:25
Show Gist options
  • Save tallstreet/d0277a36d2bf6b147f7c to your computer and use it in GitHub Desktop.
Save tallstreet/d0277a36d2bf6b147f7c to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="/elements/widgets/warrior-header/warrior-header.html">
<link rel="import" href="/elements/widgets/warrior-image/warrior-image.html">
<link rel="import" href="/elements/widgets/warrior-paragraph/warrior-paragraph.html">
<link rel="import" href="/elements/widgets/warrior-emailcollection/warrior-emailcollection.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#warrior_header {
top: 0px;
position: relative;
width: 100%;
}
#warrior_image {
left: 0px;
top: 80px;
position: absolute;
}
#warrior_paragraph {
left: 150px;
top: 70px;
position: absolute;
}
#warrior_emailcollection {
left: 0px;
top: -30px;
position: absolute;
}
</style>
<warrior-header header="Easy way to make money! Earn $10000 in the next 45 hours!" id="warrior_header" test></warrior-header>
<warrior-image src="https://cdn.ozb.me/n/71/164971.jpg?h=825ec5fa" id="warrior_image"></warrior-image>
<warrior-paragraph paragraph="No Joke! A Skull Crackin' MMA Figher Heard 55 Of My Studends currently enjoy a Full-Time Online Income. Blah Blah" id="warrior_paragraph" content-editable></warrior-paragraph>
<warrior-emailcollection id="warrior_emailcollection"></warrior-emailcollection>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment