Skip to content

Instantly share code, notes, and snippets.

@tallstreet
Last active August 29, 2015 14:07
Show Gist options
  • Save tallstreet/874288a052d80eb49d8e to your computer and use it in GitHub Desktop.
Save tallstreet/874288a052d80eb49d8e to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="/elements/widgets/warrior-paragraph/warrior-paragraph.html">
<link rel="import" href="/elements/widgets/warrior-header/warrior-header.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: relative;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#warrior_header {
left: 170px;
top: 40px;
position: absolute;
width: 400px;
height: 70px;
background-color: rgb(255, 255, 255);
}
#warrior_paragraph {
left: 60px;
top: 120px;
position: absolute;
width: 590px;
height: 50px;
}
</style>
<warrior-paragraph id="warrior_paragraph"></warrior-paragraph>
<warrior-header id="warrior_header"></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