Skip to content

Instantly share code, notes, and snippets.

@scott0228
Last active August 29, 2015 14:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save scott0228/5cda88a90d4d5662ef2d to your computer and use it in GitHub Desktop.
Save scott0228/5cda88a90d4d5662ef2d to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../core-icon-button/core-icon-button.html">
<link rel="import" href="../paper-button/paper-button.html">
<link rel="import" href="../paper-calculator/paper-calculator.html">
<link rel="import" href="../paper-checkbox/paper-checkbox.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-icon-button/paper-icon-button.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#core_icon_button {
left: 80px;
top: 140px;
position: absolute;
}
#paper_button {
left: 620px;
top: 340px;
position: absolute;
}
#paper_calculator {
width: 420px;
height: 620px;
left: 130px;
top: 20px;
position: absolute;
}
#paper_checkbox {
left: 780px;
top: 170px;
position: absolute;
}
#paper_fab {
left: 690px;
top: 470px;
position: absolute;
}
#paper_icon_button {
left: 680px;
top: 610px;
position: absolute;
}
#div {
left: 840px;
top: 450px;
position: absolute;
}
</style>
<core-icon-button icon="menu" id="core_icon_button" theme="core-light-theme"></core-icon-button>
<paper-button id="paper_button">button</paper-button>
<paper-calculator responsivewidth="2000px" id="paper_calculator"></paper-calculator>
<paper-checkbox label="click me" id="paper_checkbox"></paper-checkbox>
<paper-fab icon="av:play-arrow" id="paper_fab"></paper-fab>
<paper-icon-button icon="menu" id="paper_icon_button"></paper-icon-button>
<div id="div" layout horizontal>
<paper-fab icon="check" id="paper_fab1"></paper-fab>
</div>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment