Skip to content

Instantly share code, notes, and snippets.

@stisa
Created July 1, 2014 08:29
Show Gist options
  • Save stisa/30dcfbd7cc07891229b6 to your computer and use it in GitHub Desktop.
Save stisa/30dcfbd7cc07891229b6 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../paper-input/paper-input.html">
<link rel="import" href="../paper-checkbox/paper-checkbox.html">
<link rel="import" href="../paper-button/paper-button.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#paper_button {
margin: 1em;
background-color: rgb(192, 192, 192);
}
#paper_checkbox {
margin: auto;
}
#paper_input {
margin: auto;
}
#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: 330px;
top: 60px;
background-color: rgb(255, 255, 255);
}
</style>
<core-card id="core_card" layout vertical>
<paper-input label="Type something..." inputvalue="test" value="test" id="paper_input"></paper-input>
<paper-checkbox label="click me" id="paper_checkbox"></paper-checkbox>
<paper-button label="Paper Button" raisedbutton id="paper_button" on-click="{{ cb }}"></paper-button>
</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