Advertisement
Guest User

Untitled

a guest
May 28th, 2015
258
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. <link rel="import" href="../core-icons/core-icons.html">
  2. <link rel="import" href="../core-icons/av-icons.html">
  3. <link rel="import" href="../paper-fab/paper-fab.html">
  4.  
  5. <polymer-element name="my-element">
  6.  
  7. <template>
  8. <style>
  9. :host {
  10. position: absolute;
  11. width: 100%;
  12. height: 100%;
  13. box-sizing: border-box;
  14. }
  15. #core_card {
  16. position: absolute;
  17. width: 100%;
  18. height: 100%;
  19. border-radius: 2px;
  20. box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px;
  21. left: 0px;
  22. top: 0px;
  23. background-color: rgb(255, 255, 255);
  24. }
  25. #paper_fab {
  26. left: 50%;
  27. top: 50%;
  28. position: absolute;
  29. transform: translate(-50%, -50%);
  30. height: 200px;
  31. width: 200px;
  32. }
  33. </style>
  34. <core-card id="core_card" layout vertical>
  35. <paper-fab id="paper_fab">
  36. </paper-fab>
  37. </core-card>
  38. </template>
  39.  
  40. <script>
  41.  
  42. Polymer({
  43.  
  44. });
  45.  
  46. </script>
  47.  
  48. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement