Skip to content

Instantly share code, notes, and snippets.

@makuser
Created May 31, 2015 15:47
Show Gist options
  • Save makuser/fba50433a5efa6e0eda6 to your computer and use it in GitHub Desktop.
Save makuser/fba50433a5efa6e0eda6 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../core-icon-button/core-icon-button.html">
<link rel="import" href="../core-icons/core-icons.html">
<link rel="import" href="../core-icons/av-icons.html">
<link rel="import" href="../paper-fab/paper-fab.html">
<polymer-element name="my-element">
<template>
<style>
#card {
width: 55mm;
height: 85mm;
background-color: rgb(204, 204, 204);
}
#core_card {
width: 50mm;
height: 50mm;
top: 0px;
margin: 2.5mm;
position: relative;
background-color: rgb(255, 255, 255);
}
#addperson {
right: 5mm;
top: 50%;
}
</style>
<section id="card">
<core-icon-button icon="arrow-back" id="backbutton" theme="core-light-theme"></core-icon-button>
<paper-fab icon="social:person-add" id="addperson"></paper-fab>
<core-card id="core_card" horizontal layout></core-card>
</section>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment