Skip to content

Instantly share code, notes, and snippets.

@ramkicse
Created July 3, 2014 11:05
Show Gist options
  • Save ramkicse/3eabb54d4a6797fae34a to your computer and use it in GitHub Desktop.
Save ramkicse/3eabb54d4a6797fae34a to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../paper-button/paper-button.html">
<link rel="import" href="../core-icons/core-icons.html">
<link rel="import" href="../paper-icon-button/paper-icon-button.html">
<link rel="import" href="../paper-progress/paper-progress.html">
<link rel="import" href="../paper-ripple/paper-ripple.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: 250px;
top: 230px;
background-color: rgb(255, 255, 255);
}
#paper_ripple {
width: 300px;
height: 300px;
}
</style>
<core-card id="core_card" layout vertical>
<paper-button label="Paper Button" id="paper_button"></paper-button>
<paper-icon-button icon="menu" id="paper_icon_button"></paper-icon-button>
<paper-progress id="paper_progress"></paper-progress>
<paper-ripple id="paper_ripple"></paper-ripple>
</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