Advertisement
Guest User

Untitled

a guest
May 26th, 2015
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. <link rel="import" href="../ace-element/ace-element.html">
  2. <link rel="import" href="../chart-js/chart-js.html">
  3. <link rel="import" href="../paper-calculator/paper-calculator.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. #ace_element {
  16. width: 400px;
  17. height: 300px;
  18. left: 520px;
  19. top: 220px;
  20. position: absolute;
  21. }
  22. #chart_js {
  23. width: 300px;
  24. height: 200px;
  25. left: 200px;
  26. top: 100px;
  27. position: absolute;
  28. }
  29. #paper_calculator {
  30. width: 400px;
  31. height: 560px;
  32. left: 340px;
  33. top: 10px;
  34. position: absolute;
  35. }
  36. </style>
  37. <ace-element id="ace_element">function test() {
  38. var x = true;
  39. }</ace-element>
  40. <chart-js id="chart_js"></chart-js>
  41. <paper-calculator responsivewidth="2000px" id="paper_calculator"></paper-calculator>
  42. </template>
  43.  
  44. <script>
  45.  
  46. Polymer({
  47.  
  48. });
  49.  
  50. </script>
  51.  
  52. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement