Last active
August 29, 2015 14:13
-
-
Save pacwoodson/24b83d5dbf2860a80c7c 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 href="../paper-progress/paper-progress.html" rel="import"> | |
<link href="../core-icons/core-icons.html" rel="import"> | |
<link href="../core-icons/av-icons.html" rel="import"> | |
<link href="../paper-fab/paper-fab.html" rel="import"> | |
<link href="../paper-item/paper-item.html" rel="import"> | |
<link href="../paper-tabs/paper-tab.html" rel="import"> | |
<link href="../paper-input/paper-input.html" rel="import"> | |
<link href="../paper-ripple/paper-ripple.html" rel="import"> | |
<link href="../paper-slider/paper-slider.html" rel="import"> | |
<link href="../paper-toggle-button/paper-toggle-button.html" rel="import"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
#design_host { | |
position: absolute; | |
width: 100%; | |
height: 100%; | |
box-sizing: border-box; | |
} | |
#paper_progress { | |
left: 280px; | |
top: 210px; | |
position: absolute; | |
} | |
#div { | |
left: 1160px; | |
top: 520px; | |
} | |
#paper_fab1 { | |
left: 210px; | |
top: 180px; | |
position: absolute; | |
} | |
#paper_item { | |
left: 540px; | |
top: 270px; | |
position: absolute; | |
} | |
#paper_tabs { | |
width: 480px; | |
background-color: rgb(0, 188, 212); | |
color: rgb(255, 255, 255); | |
box-shadow: 0px 3px 2px rgba(0, 0, 0, 0.2); | |
left: 1150px; | |
top: 590px; | |
} | |
#paper_tab { | |
width: 120px; | |
height: 40px; | |
left: 420px; | |
top: 360px; | |
position: absolute; | |
} | |
#paper_input { | |
left: 410px; | |
top: 460px; | |
position: absolute; | |
} | |
#paper_ripple { | |
width: 300px; | |
height: 300px; | |
left: 660px; | |
top: 340px; | |
position: absolute; | |
} | |
#paper_slider { | |
left: 250px; | |
top: 570px; | |
position: absolute; | |
} | |
#paper_tab1 { | |
width: 120px; | |
height: 40px; | |
left: 760px; | |
top: 150px; | |
position: absolute; | |
} | |
#paper_toggle_button { | |
left: 760px; | |
top: 460px; | |
position: absolute; | |
} | |
</style> | |
<paper-progress value="10" max="38" ratio="26.31578947368421" id="paper_progress"></paper-progress> | |
<paper-fab icon="av:play-arrow" id="paper_fab1"></paper-fab> | |
<paper-item id="paper_item" icon="settings" label="Item"></paper-item> | |
<paper-tab id="paper_tab" layout horizontal center-center flex inline>TAB</paper-tab> | |
<paper-spinner id="paper-spinner"></paper-spinner> | |
<paper-input label="Type something..." id="paper_input"></paper-input> | |
<paper-ripple id="paper_ripple"></paper-ripple> | |
<paper-slider id="paper_slider"></paper-slider> | |
<paper-tab id="paper_tab1" layout horizontal center-center flex inline>TAB</paper-tab> | |
<paper-toggle-button id="paper_toggle_button"></paper-toggle-button> | |
</template> | |
<script> | |
Polymer({ | |
a: 0 | |
}); | |
</script> | |
</polymer-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment