Created
July 23, 2014 21:26
-
-
Save alemolinata/e633225c3b37a46c2e84 to your computer and use it in GitHub Desktop.
designer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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="../paper-tabs/paper-tabs.html"> | |
<link rel="import" href="../paper-tabs/paper-tab.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; | |
width: 100%; | |
height: 100%; | |
box-sizing: border-box; | |
} | |
#core_animated_pages { | |
width: 100%; | |
height: 100%; | |
overflow: hidden; | |
left: 0px; | |
top: 0px; | |
position: absolute; | |
background-color: rgb(238, 238, 238); | |
} | |
#core_menu { | |
font-size: 16px; | |
left: 1200px; | |
top: 550px; | |
} | |
#section3 { | |
width: 100%; | |
height: 100%; | |
border: 5px solid rgb(204, 204, 204); | |
} | |
#paper_tabs { | |
color: rgb(255, 255, 255); | |
box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 2px; | |
background-color: rgb(0, 188, 212); | |
} | |
</style> | |
<core-animated-pages selectedindex="0" notap id="core_animated_pages"> | |
<section id="section" layout horizontal center center-justified active> | |
<section id="section3" layout vertical> | |
<paper-tabs selected="4" selectedindex="4" id="paper_tabs"> | |
<paper-tab id="paper_tab">PROYECTO</paper-tab> | |
<paper-tab id="paper_tab1">APP</paper-tab> | |
<paper-tab id="paper_tab2">EQUIPO</paper-tab> | |
<paper-tab id="paper_tab3">DEVF</paper-tab> | |
<paper-tab id="paper_tab4" active>CONTACTO</paper-tab> | |
</paper-tabs> | |
<section id="section4" flex relative> | |
</section> | |
</section> | |
</section> | |
<section id="section1"> | |
</section> | |
<section id="section2"> | |
</section> | |
</core-animated-pages> | |
</template> | |
<script> | |
Polymer('my-element', { | |
}); | |
</script> | |
</polymer-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment