Last active
August 29, 2015 14:06
-
-
Save kgersen/8da5bc17166f0d78df68 to your computer and use it in GitHub Desktop.
designer
This file contains 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-tabs/paper-tabs.html"> | |
<link rel="import" href="../paper-tabs/paper-tab.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-input/paper-input.html"> | |
<link rel="import" href="../paper-progress/paper-progress.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; | |
width: 100%; | |
height: 100%; | |
box-sizing: border-box; | |
} | |
#section { | |
border: 5px solid rgb(204, 204, 204); | |
} | |
#paper_tabs1 { | |
color: rgb(255, 255, 255); | |
box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 2px; | |
background-color: rgb(0, 188, 212); | |
} | |
#section1 { | |
opacity: 1; | |
} | |
#paper_progress { | |
background-color: rgb(95, 205, 67); | |
} | |
#div { | |
left: 1220px; | |
top: 640px; | |
position: absolute; | |
} | |
#paper_input { | |
left: 25px; | |
top: 97px; | |
position: absolute; | |
} | |
</style> | |
<div id="div" layout horizontal> | |
</div> | |
<section id="section" layout vertical> | |
<paper-tabs noink nobar selected="1" selectedindex="1" id="paper_tabs1"> | |
<paper-tab id="paper_tab_download">Download</paper-tab> | |
<paper-tab id="paper_tab_upload" active>Upload</paper-tab> | |
</paper-tabs> | |
<section id="section1" flex relative> | |
<paper-fab icon="av:play-arrow" id="paper_fab"></paper-fab> | |
<paper-input label="Server" willvalidate id="paper_input" vertical layout start></paper-input> | |
<paper-progress id="paper_progress" horizontal layout center></paper-progress> | |
</section> | |
</section> | |
</template> | |
<script> | |
Polymer({ | |
}); | |
</script> | |
</polymer-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment