victorazevedo
5/28/2015 - 6:52 PM

designer

designer

<link rel="import" href="../core-animated-pages/core-animated-pages.html">
<link rel="import" href="../core-animated-pages/transitions/hero-transition.html">
<link rel="import" href="../core-animated-pages/transitions/cross-fade.html">
<link rel="import" href="../core-animated-pages/transitions/slide-down.html">
<link rel="import" href="../core-animated-pages/transitions/slide-up.html">
<link rel="import" href="../core-animated-pages/transitions/tile-cascade.html">
<link rel="import" href="../topeka-elements/topeka-resources.html">
<link rel="import" href="../topeka-elements/topeka-profile.html">

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

  <template>
    <style>    
      :host {
        position: absolute;
        width: 100%;
        height: 100%;
        box-sizing: border-box;
      }
      #topeka_profile {
        width: 340px;
        height: 590px;
      }
      #core_animated_pages {
        width: 410px;
        height: 630px;
        overflow: hidden;
        left: 340px;
        top: 20px;
        position: absolute;
        background-color: rgb(238, 238, 238);
      }
    </style>
    <core-animated-pages selectedindex="0" notap id="core_animated_pages">
      <section id="section" layout horizontal center center-justified active>
        <topeka-profile id="topeka_profile" center layout vertical></topeka-profile>
      </section>
      <section id="section1">
      </section>
      <section id="section2">
      </section>
    </core-animated-pages>
  </template>

  <script>

    Polymer({
      
    });

  </script>

</polymer-element>