Advertisement
Guest User

Untitled

a guest
Dec 19th, 2014
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. <link rel="import" href="../core-ajax/core-ajax.html">
  2. <link rel="import" href="../core-icons/core-icons.html">
  3. <link rel="import" href="../paper-item/paper-item.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: 1070px;
  18. height: 210px;
  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: 220px;
  22. top: 220px;
  23. background-color: rgb(255, 255, 255);
  24. }
  25. </style>
  26. <core-card id="core_card" layout vertical>
  27. <section id="section"></section>
  28. <core-ajax id="core_ajax" hidden></core-ajax>
  29. <paper-item raised id="paper_item" icon="settings" label="Item">Title</paper-item>
  30. </core-card>
  31. </template>
  32.  
  33. <script>
  34.  
  35. Polymer({
  36.  
  37. });
  38.  
  39. </script>
  40.  
  41. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement