Skip to content

Instantly share code, notes, and snippets.

@icub3d
Created July 2, 2014 04:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save icub3d/1daaa3367128129928cd to your computer and use it in GitHub Desktop.
Save icub3d/1daaa3367128129928cd to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../core-icons/core-icons.html">
<link rel="import" href="../core-icons/iconsets/av-icons.html">
<link rel="import" href="../paper-fab/paper-fab.html">
<link rel="import" href="../core-item/core-item.html">
<polymer-element name="my-element">
<template>
<style>
:host {
box-sizing: border-box;
}
#div {
left: 1330px;
top: 620px;
}
#core_card {
width: 100px;
height: 200px;
border-top-left-radius: 2px;
border-top-right-radius: 2px;
border-bottom-right-radius: 2px;
border-bottom-left-radius: 2px;
box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px;
background-color: rgb(255, 255, 255);
}
#paper_fab {
background-color: rgb(58, 115, 4);
}
#section {
left: 860px;
top: 500px;
position: absolute;
}
</style>
<core-card id="core_card" vertical layout center-justified center>
<paper-fab icon="expand-less" id="paper_fab"></paper-fab>
<core-item label="20" id="core_item" horizontal center layout center-justified></core-item>
<paper-fab icon="expand-more" id="paper_fab1"></paper-fab>
</core-card>
<section id="section"></section>
</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