Skip to content

Instantly share code, notes, and snippets.

@gkaimakas
Created August 6, 2014 09:11
Show Gist options
  • Save gkaimakas/ca7c1c76cc1a29e9bf9b to your computer and use it in GitHub Desktop.
Save gkaimakas/ca7c1c76cc1a29e9bf9b to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../components/polymer/polymer.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#paper_button {
left: 740px;
top: 130px;
position: absolute;
}
#paper_fab {
left: 1030px;
top: 450px;
position: absolute;
}
</style>
<paper-button label="Paper Button" id="paper_button"></paper-button>
<paper-fab icon="av:play-arrow" id="paper_fab"></paper-fab>
</template>
<script>
Polymer('my-element', {
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment