Last active
August 29, 2015 14:12
-
-
Save inbasic/f3800f7a9f84b6dc94a4 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-button/paper-button.html"> | |
<link rel="import" href="../paper-radio-group/paper-radio-group.html"> | |
<link rel="import" href="../paper-radio-button/paper-radio-button.html"> | |
<link rel="import" href="../ace-element/ace-element.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; | |
width: 100%; | |
height: 100%; | |
box-sizing: border-box; | |
} | |
#paper_button { | |
left: 230px; | |
top: 130px; | |
position: absolute; | |
} | |
#paper_button1 { | |
left: 240px; | |
top: 90px; | |
position: absolute; | |
} | |
#paper_radio_group { | |
left: 520px; | |
top: 120px; | |
position: absolute; | |
} | |
#ace_element { | |
width: 400px; | |
height: 300px; | |
left: 390px; | |
top: 180px; | |
position: absolute; | |
} | |
</style> | |
<paper-button id="paper_button1">button</paper-button> | |
<paper-button active focused id="paper_button">button</paper-button> | |
<paper-radio-group selected="Medium" valueattr="label" selectedindex="1" id="paper_radio_group"> | |
<paper-radio-button label="Small" id="paper_radio_button"></paper-radio-button> | |
<paper-radio-button checked label="Medium" id="paper_radio_button1"></paper-radio-button> | |
<paper-radio-button label="Large" id="paper_radio_button2"></paper-radio-button> | |
</paper-radio-group> | |
<ace-element id="ace_element">function test() { | |
var x = true; | |
}</ace-element> | |
</template> | |
<script> | |
Polymer({ | |
}); | |
</script> | |
</polymer-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment