Advertisement
Guest User

Untitled

a guest
Jul 6th, 2015
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. <link rel="import" href="../polymer/polymer.html">
  2.  
  3. <polymer-element name="my-element">
  4.  
  5. <template>
  6. <style>
  7. :host {
  8. position: absolute;
  9. width: 100%;
  10. height: 100%;
  11. box-sizing: border-box;
  12. top: 0px;
  13. left: 0px;
  14. }
  15. #core_card {
  16. position: absolute;
  17. width: 300px;
  18. height: 300px;
  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: 390px;
  22. top: 150px;
  23. background-color: rgb(255, 255, 255);
  24. }
  25. </style>
  26. <paper-shadow>
  27. <core-card id="core_card" layout vertical></core-card>
  28. </paper-shadow>
  29. </template>
  30.  
  31. <script>
  32.  
  33. Polymer({
  34.  
  35. });
  36.  
  37. </script>
  38.  
  39. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement