Created
October 2, 2014 18:52
-
-
Save IntranetFactory/6890292d9c7a5b939de0 to your computer and use it in GitHub Desktop.
designer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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 " 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