Skip to content

Instantly share code, notes, and snippets.

@sauravdroid
Created March 24, 2015 08:33
Show Gist options
  • Save sauravdroid/22c84808b9b879a93819 to your computer and use it in GitHub Desktop.
Save sauravdroid/22c84808b9b879a93819 to your computer and use it in GitHub Desktop.
designer
<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;
top: 0px;
left: 0px;
}
#paper_fab {
left: 1070px;
top: 500px;
}
#paper_checkbox {
left: 1060px;
top: 450px;
}
#paper_button {
left: 80px;
top: 80px;
position: absolute;
width: 120px;
height: 40px;
background-color: rgb(255, 255, 255);
}
</style>
<paper-button raised id="paper_button">button</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