pavelpie
11/15/2014 - 9:34 AM

designer

designer

<link rel="import" href="../paper-tabs/paper-tabs.html">
<link rel="import" href="../paper-tabs/paper-tab.html">
<link rel="import" href="../notification-elements/notification-alert.html">

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

  <template>
    <style>    
      :host {
        position: absolute;
        width: 100%;
        height: 100%;
        box-sizing: border-box;
      }
      #section {
        width: 1120px;
        height: 560px;
        border: 5px solid rgb(204, 204, 204);
        left: 10px;
        top: 10px;
        position: absolute;
      }
      #paper_tabs {
        color: rgb(255, 255, 255);
        box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 2px;
        background-color: rgb(0, 188, 212);
      }
      #paper_tab2 {
        width: 120px;
        height: 40px;
      }
      #notification_alert {
        left: 535px;
        top: 207px;
        position: absolute;
      }
      #notification_alert1 {
        left: 595px;
        top: 207px;
        position: absolute;
      }
      #paper_slider {
        left: 1650px;
        top: 630px;
      }
      #paper_item {
        left: 1490px;
        top: 620px;
      }
    </style>
    <section id="section" layout vertical>
      <paper-tabs noink nobar selected="2" selectedindex="2" id="paper_tabs" horizontal center layout>
        <paper-tab id="paper_tab" inline flex center-center horizontal layout>DODAWANIE OPERACJI</paper-tab>
        <paper-tab id="paper_tab1" inline flex center-center horizontal layout>DZISIAJ</paper-tab>
        <paper-tab id="paper_tab2" inline flex center-center horizontal layout active>HISTORIA</paper-tab>
      </paper-tabs>
      <section id="section1" flex relative>
        <notification-alert message="Hi there!" icon="icon.png" name="notification" id="notification_alert"></notification-alert>
        <notification-alert message="Hi there!" icon="icon.png" name="notification" id="notification_alert1"></notification-alert>
      </section>
    </section>
  </template>

  <script>

    Polymer({
      
    });

  </script>

</polymer-element>