Skip to content

Instantly share code, notes, and snippets.

@sorvell
Last active August 29, 2015 14:06
Show Gist options
  • Select an option

  • Save sorvell/5216aff2ac74e9af5824 to your computer and use it in GitHub Desktop.

Select an option

Save sorvell/5216aff2ac74e9af5824 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: 300px;
height: 300px;
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;
left: 130px;
top: 120px;
background-color: rgb(51, 87, 255);
}
#core_card1 {
width: 150px;
height: 150px;
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;
position: absolute;
left: 20px;
top: 20px;
background-color: rgb(255, 158, 92);
}
</style>
<core-card id="core_card" layout vertical>
<core-card id="core_card1" layout vertical></core-card>
</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