Skip to content

Instantly share code, notes, and snippets.

@vinceyoumans
Last active January 18, 2017 22:58
Show Gist options
  • Save vinceyoumans/ff8e94fc9bd8c690008b292ec93420e0 to your computer and use it in GitHub Desktop.
Save vinceyoumans/ff8e94fc9bd8c690008b292ec93420e0 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../core-item/core-item.html">
<link rel="import" href="../paper-input/paper-input.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;
}
#core_card {
position: absolute;
width: 300px;
height: 300px;
background-color: rgb(255, 255, 255);
border-radius: 2px;
box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px;
left: 270px;
top: 70px;
}
#paper_button {
background-color: rgb(64, 128, 128);
border: 1px solid;
margin: 5% 10%;
opacity: 1;
}
</style>
<core-card id="core_card" layout vertical>
<core-item id="core_item" icon="mail" label="Subscribe to my EMAIL LIST" horizontal layout center></core-item>
<paper-input label="Type something..." id="paper_input" horizontal layout center-justified></paper-input>
<paper-button raised id="paper_button" horizontal layout center-justified>button</paper-button>
</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