Advertisement
Guest User

Untitled

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