Skip to content

Instantly share code, notes, and snippets.

@vigilancetech-com
Last active October 8, 2016 01:54
Show Gist options
  • Save vigilancetech-com/f822b1b1b6eeb32e0a429423f2b0aa20 to your computer and use it in GitHub Desktop.
Save vigilancetech-com/f822b1b1b6eeb32e0a429423f2b0aa20 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;
}
#paper_button {
background-color: rgb(88, 27, 27);
opacity: 1;
padding: 20px;
margin: 5px;
border: 5px;
position: relative;
}
</style>
<paper-button raised recenteringtouch active focused id="paper_button" vertical layout center center-justified twelve flex>Click Me!</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