Skip to content

Instantly share code, notes, and snippets.

@12alex21
Last active August 29, 2015 14:08
Show Gist options
  • Save 12alex21/5277d0ee84007bdd2c03 to your computer and use it in GitHub Desktop.
Save 12alex21/5277d0ee84007bdd2c03 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 {
width: 100%;
height: 100%;
box-sizing: border-box;
opacity: 1;
top: 0px;
left: 0px;
position: absolute;
background-color: rgb(0, 150, 136);
}
#paper_button {
left: 420px;
top: 800px;
position: absolute;
width: 40%;
height: 10%;
}
</style>
<paper-button label="Random" id="paper_button" center vertical layout></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