Advertisement
Guest User

Untitled

a guest
Jun 30th, 2015
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. <link rel="import" href="../cool-clock/cool-clock.html">
  2. <link rel="import" href="../google-map/google-map.html">
  3. <link rel="import" href="../code-mirror/code-mirror.html">
  4.  
  5. <polymer-element name="my-element">
  6.  
  7. <template>
  8. <style>
  9. #design_host {
  10. position: absolute;
  11. width: 100%;
  12. height: 100%;
  13. box-sizing: border-box;
  14. top: 0px;
  15. left: 0px;
  16. }
  17. #cool_clock {
  18. width: 400px;
  19. height: 300px;
  20. left: 430px;
  21. top: 160px;
  22. position: absolute;
  23. }
  24. #core_scaffold {
  25. position: absolute;
  26. top: 0px;
  27. right: 0px;
  28. bottom: 0px;
  29. left: 0px;
  30. width: 100%;
  31. height: 100%;
  32. }
  33. #core_header_panel {
  34. background-color: rgb(255, 255, 255);
  35. }
  36. #core_toolbar {
  37. background-color: rgb(79, 125, 201);
  38. color: rgb(255, 255, 255);
  39. }
  40. #core_menu {
  41. font-size: 16px;
  42. }
  43. </style>
  44. <cool-clock id="cool_clock">hi</cool-clock>
  45. </template>
  46.  
  47. <script>
  48.  
  49. Polymer({
  50.  
  51. });
  52.  
  53. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement