wolfhesse
4/30/2015 - 2:09 PM

designer

designer

<link rel="import" href="../paper-calculator/paper-calculator.html">
<link rel="import" href="../cool-clock/cool-clock.html">

<polymer-element name="my-element">

  <template>
    <style>    
      :host {
        position: absolute;
        width: 100%;
        height: 100%;
        box-sizing: border-box;
        top: 0px;
        left: 0px;
      }
      #paper_calculator {
        width: 770px;
        height: 490px;
        left: 40px;
        top: 20px;
        position: absolute;
      }
      #cool_clock {
        width: 400px;
        height: 300px;
        left: 990px;
        top: 70px;
        position: absolute;
      }
    </style>
    <paper-calculator widemode responsivewidth="2000px" id="paper_calculator"></paper-calculator>
    <cool-clock id="cool_clock"></cool-clock>
  </template>

  <script>

    Polymer({
      
    });

  </script>

</polymer-element>