Advertisement
Guest User

Untitled

a guest
May 28th, 2015
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 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. }
  13. #core_card {
  14. position: absolute;
  15. width: 300px;
  16. height: 300px;
  17. border-radius: 2px;
  18. box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px;
  19. left: 570px;
  20. top: 190px;
  21. background-color: rgb(255, 255, 255);
  22. }
  23. </style>
  24. <core-card id="core_card" layout vertical></core-card>
  25. </template>
  26.  
  27. <script>
  28.  
  29. Polymer({
  30.  
  31. });
  32.  
  33. </script>
  34.  
  35. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement