Skip to content

Instantly share code, notes, and snippets.

@hiteshagja
Created November 10, 2014 07:25
Show Gist options
  • Save hiteshagja/59648ad4ab8bb82ddb21 to your computer and use it in GitHub Desktop.
Save hiteshagja/59648ad4ab8bb82ddb21 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../paper-input/paper-input.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: 390px;
top: 230px;
background-color: rgb(255, 255, 255);
}
#paper_input {
width: 230px;
height: 30px;
}
#paper_input1 {
width: 140px;
height: 10px;
}
</style>
<core-card id="core_card" horizontal layout>
<paper-input label="Type something..." willvalidate id="paper_input" layout vertical></paper-input>
<paper-input label="Type something..." willvalidate id="paper_input2" layout vertical></paper-input>
<paper-input label="Type something..." willvalidate id="paper_input1" layout vertical></paper-input>
</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