Skip to content

Instantly share code, notes, and snippets.

@IntranetFactory
Created October 2, 2014 18:52
Show Gist options
  • Select an option

  • Save IntranetFactory/6890292d9c7a5b939de0 to your computer and use it in GitHub Desktop.

Select an option

Save IntranetFactory/6890292d9c7a5b939de0 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../paper-input/paper-input.html">
<link rel="import" href="../at-carbon-container/at-carbon-container.html">
<link rel="import" href="../paper-checkbox/paper-checkbox.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: relative;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#paper_checkbox {
background-color: rgb(255, 128, 64);
}
</style>
<paper-input inputvalueformirror="dfgdfgdfg&nbsp;" inputhasvalue="dfgdfgdfg" label="Hello" floatinglabel willvalidate inputvalue="dfgdfgdfg" value="dfgdfgdfg" id="paper_input" layout vertical></paper-input>
<paper-input label="Type something..." willvalidate id="paper_input1" layout vertical></paper-input>
<paper-input label="Type something..." willvalidate id="paper_input2" layout vertical></paper-input>
<at-carbon-container id="at_carbon_container">
<paper-checkbox checked label="click me" id="paper_checkbox1"></paper-checkbox>
<paper-checkbox checked label="click me" id="paper_checkbox"></paper-checkbox>
</at-carbon-container>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment