Skip to content

Instantly share code, notes, and snippets.

@rpbarbati
Last active August 29, 2015 14:16
Show Gist options
  • Save rpbarbati/7d2f67dcc88d649637a8 to your computer and use it in GitHub Desktop.
Save rpbarbati/7d2f67dcc88d649637a8 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../paper-button/paper-button.html">
<link rel="import" href="../paper-input/paper-input.html">
<link rel="import" href="../paper-checkbox/paper-checkbox.html">
<polymer-element name="my-element">
<template>
<style>
#core_card {
position: absolute;
width: 370px;
height: 450px;
border-radius: 2px;
box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px;
left: 360px;
top: 160px;
background-color: rgb(255, 255, 255);
}
:host {
border: thick;
background-color: rgb(242, 197, 164);
}
</style>
<core-card id="core_card" layout vertical>
<paper-button id="paper_button">button</paper-button>
<paper-input label="Type something..." id="paper_input"></paper-input>
<paper-checkbox label="click me" id="paper_checkbox"></paper-checkbox>
</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