Skip to content

Instantly share code, notes, and snippets.

@tallstreet
Last active August 29, 2015 14:07
Show Gist options
  • Save tallstreet/3c3d393dd70b82e727ee to your computer and use it in GitHub Desktop.
Save tallstreet/3c3d393dd70b82e727ee to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../polymer/polymer.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#core_card {
position: absolute;
width: 560px;
height: 630px;
border-radius: 2px;
box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px;
left: 30px;
top: 0px;
margin: 20px;
padding: 20px;
opacity: 0.6;
border: 20px;
background-color: rgb(208, 41, 41);
}
</style>
<core-card id="core_card" layout vertical>Th</core-card>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment