Skip to content

Instantly share code, notes, and snippets.

@vntkumar8
Created December 23, 2014 14:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vntkumar8/b1cd3b3f2c131638cffe to your computer and use it in GitHub Desktop.
Save vntkumar8/b1cd3b3f2c131638cffe to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../topeka-elements/topeka-resources.html">
<link rel="import" href="../topeka-elements/topeka-profile.html">
<link rel="import" href="../paper-button/paper-button.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#topeka_profile {
width: 320px;
height: 550px;
left: 140px;
top: 20px;
position: absolute;
}
#paper_button {
left: 240px;
top: 500px;
position: absolute;
}
</style>
<topeka-profile id="topeka_profile" center vertical layout></topeka-profile>
<paper-button raised recenteringtouch id="paper_button">Submit</paper-button>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment