Advertisement
Guest User

Untitled

a guest
May 26th, 2015
259
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.13 KB | None | 0 0
  1. <link rel="import" href="../paper-button/paper-button.html">
  2. <link rel="import" href="../paper-toast/paper-toast.html">
  3.  
  4. <polymer-element name="my-element">
  5.  
  6. <template>
  7. <style>
  8. :host {
  9. box-sizing: border-box;
  10. }
  11. #topeka_quizzes {
  12. width: 300px;
  13. height: 300px;
  14. left: 280px;
  15. top: 90px;
  16. position: absolute;
  17. }
  18. #topeka_datasource {
  19. left: 780px;
  20. top: 290px;
  21. position: absolute;
  22. }
  23. #topeka_datasource1 {
  24. left: 880px;
  25. top: 310px;
  26. position: absolute;
  27. }
  28. #notification_alert1 {
  29. left: 870px;
  30. top: 390px;
  31. position: absolute;
  32. }
  33. #google_map {
  34. width: 400px;
  35. height: 400px;
  36. display: block;
  37. left: 920px;
  38. top: 390px;
  39. position: absolute;
  40. }
  41. #cool_clock {
  42. width: 400px;
  43. height: 300px;
  44. left: 910px;
  45. top: 370px;
  46. position: absolute;
  47. }
  48. #ace_element {
  49. width: 400px;
  50. height: 300px;
  51. left: 1190px;
  52. top: 270px;
  53. }
  54. #yt_search_video {
  55. width: 300px;
  56. height: 300px;
  57. left: 50px;
  58. top: 10px;
  59. position: absolute;
  60. display: block;
  61. }
  62. #yt_search_video1 {
  63. width: 300px;
  64. height: 300px;
  65. left: 740px;
  66. top: 310px;
  67. position: absolute;
  68. }
  69. #core_ajax {
  70. left: 390px;
  71. top: 300px;
  72. position: absolute;
  73. }
  74. #toast3 {
  75. padding-right: 60px;
  76. position: fixed;
  77. outline: none;
  78. display: none;
  79. }
  80. #paper_button {
  81. left: 480px;
  82. top: 240px;
  83. position: absolute;
  84. }
  85. #paper_toast {
  86. left: 650px;
  87. top: 320px;
  88. position: absolute;
  89. }
  90. </style>
  91. <paper-button toggle="{{ $.paper_toast.opened }}" id="paper_button">button</paper-button>
  92. <paper-toast text="Toast!" id="paper_toast" touch-action="none" class="core-transition-bottom core-transition"></paper-toast>
  93. </template>
  94.  
  95. <script>
  96.  
  97. Polymer({
  98.  
  99. });
  100.  
  101. </script>
  102.  
  103. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement