Skip to content

Instantly share code, notes, and snippets.

@sirdlx
Created July 5, 2014 14:54
Show Gist options
  • Save sirdlx/6fada637291b51f0bbd1 to your computer and use it in GitHub Desktop.
Save sirdlx/6fada637291b51f0bbd1 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../core-icons/core-icons.html">
<link rel="import" href="../paper-item/paper-item.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#core_card {
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);
}
</style>
<core-card id="core_card" layout vertical>
<img src="http://ms.dlxstudios.com/images/eot280-compressor.jpg" />
<paper-item label="Title of post" id="paper_item" center horizontal layout></paper-item>
</core-card>
</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