Skip to content

Instantly share code, notes, and snippets.

@alemolinata
Created July 25, 2014 20:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alemolinata/ecec2fa183ad9fa04a57 to your computer and use it in GitHub Desktop.
Save alemolinata/ecec2fa183ad9fa04a57 to your computer and use it in GitHub Desktop.
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="../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>
<div id="section--intro" class="section--intro">
<h1>Condesa Accesible</h1>
</div>
<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