Skip to content

Instantly share code, notes, and snippets.

@edwardstudy
Last active August 29, 2015 14:17
Show Gist options
  • Save edwardstudy/b3e8ade7d03f44bfda6b to your computer and use it in GitHub Desktop.
Save edwardstudy/b3e8ade7d03f44bfda6b to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../ace-element/ace-element.html">
<link rel="import" href="../paper-calculator/paper-calculator.html">
<link rel="import" href="../core-icons/core-icons.html">
<link rel="import" href="../core-icons/av-icons.html">
<link rel="import" href="../paper-fab/paper-fab.html">
<link rel="import" href="../paper-progress/paper-progress.html">
<link rel="import" href="../paper-slider/paper-slider.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#ace_element {
width: 400px;
height: 300px;
left: 830px;
top: 350px;
position: absolute;
}
#paper_calculator {
width: 400px;
height: 560px;
left: 150px;
top: 60px;
position: absolute;
}
#div {
left: 1210px;
top: 270px;
position: absolute;
}
#paper_progress {
left: 1290px;
top: 630px;
position: absolute;
}
#paper_slider {
left: 1130px;
top: 250px;
position: absolute;
}
</style>
<ace-element id="ace_element"><polymer-element name='my-element'>
<template></template>
<script>
Polymer('my-element', {});
</script>
</polymer-element></ace-element>
<paper-calculator id="paper_calculator" responsivewidth="2000px"></paper-calculator>
<div id="div" layout horizontal>
<paper-fab icon="check" id="paper_fab"></paper-fab>
</div>
<paper-progress id="paper_progress"></paper-progress>
<paper-slider id="paper_slider"></paper-slider>
</template>
<script>
Polymer('my-element', {
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment