Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. <link rel="import" href="../bower_components/polymer/polymer.html">
  2.  
  3. <dom-module id="my-market">
  4.  
  5. <template>
  6.  
  7. <style>
  8. :host {
  9. display: block;
  10. padding: 10px;
  11. }
  12. paper-card.top{
  13. margin-top: 8px;
  14. width: 100%;
  15. padding-bottom: 16px;
  16. }
  17. </style>
  18.  
  19. <paper-card heading="Welcome to the Market!">
  20. <div class="card-content">
  21. <h4>Upload a photo of your item</h4>
  22. <!--uplod image-->
  23. <input type="file" value="upload" id="fileUpload"/>
  24. <progress value="0" max="100" id="uploader">0%</progress>
  25. </div>
  26. </paper-card>
  27.  
  28. </template>
  29.  
  30. <script>
  31.  
  32. Polymer({
  33.  
  34. is: 'my-market'
  35.  
  36. });
  37.  
  38. </script>
  39.  
  40. </dom-module>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement