Created
December 23, 2014 14:13
-
-
Save vntkumar8/b1cd3b3f2c131638cffe to your computer and use it in GitHub Desktop.
designer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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