Advertisement
Guest User

Untitled

a guest
Jan 29th, 2015
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.71 KB | None | 0 0
  1. <link rel="import" href="../topeka-elements/avatars.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: 840px;
  17. height: 570px;
  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: 290px;
  21. top: 120px;
  22. background-color: rgb(255, 255, 255);
  23. }
  24. #core_item {
  25. left: 1660px;
  26. top: 690px;
  27. }
  28. #core_header_panel {
  29. width: 300px;
  30. height: 400px;
  31. left: 1830px;
  32. top: 660px;
  33. }
  34. #core_card1 {
  35. position: absolute;
  36. width: 300px;
  37. height: 300px;
  38. border-radius: 2px;
  39. box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px;
  40. left: 1770px;
  41. top: 660px;
  42. background-color: rgb(255, 255, 255);
  43. }
  44. #core_drawer_panel {
  45. position: absolute;
  46. top: 890px;
  47. right: 0px;
  48. bottom: 0px;
  49. left: 1890px;
  50. }
  51. #core_pages {
  52. width: 400px;
  53. height: 400px;
  54. border: 1px solid silver;
  55. left: 1790px;
  56. top: 740px;
  57. }
  58. #core_icon {
  59. height: 64px;
  60. width: 64px;
  61. }
  62. </style>
  63. <core-card id="core_card" layout vertical>
  64. <core-icon icon="avatars:avatar-1" id="core_icon" designmeta="topeka-avatar"></core-icon>
  65. </core-card>
  66. </template>
  67.  
  68. <script>
  69.  
  70. Polymer({
  71.  
  72. });
  73.  
  74. </script>
  75.  
  76. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement