Skip to content

Instantly share code, notes, and snippets.

@lortiz211
Created August 22, 2014 22:33
Show Gist options
  • Save lortiz211/10ca17d5e5de75d865e7 to your computer and use it in GitHub Desktop.
Save lortiz211/10ca17d5e5de75d865e7 to your computer and use it in GitHub Desktop.
designer
<link href="../core-icon-button/core-icon-button.html" rel="import">
<link href="../core-toolbar/core-toolbar.html" rel="import">
<link href="../core-header-panel/core-header-panel.html" rel="import">
<link href="../core-animated-pages/core-animated-pages.html" rel="import">
<link href="../core-animated-pages/transitions/hero-transition.html" rel="import">
<link href="../core-animated-pages/transitions/cross-fade.html" rel="import">
<link href="../core-animated-pages/transitions/slide-down.html" rel="import">
<link href="../core-animated-pages/transitions/slide-up.html" rel="import">
<link href="../core-animated-pages/transitions/tile-cascade.html" rel="import">
<polymer-element name="my-element">
<template>
<style>
#design_host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#core_header_panel {
width: 100%;
height: 2000%;
left: 0px;
top: 0px;
position: absolute;
}
#core_toolbar {
background-color: rgb(79, 125, 201);
color: rgb(255, 255, 255);
}
#section {
height: 1000px;
background: linear-gradient(rgb(214, 227, 231), gray) repeat scroll 0% 0% transparent;
}
#section1 {
height: 1000px;
width: 210px;
background: linear-gradient(rgb(255, 227, 231), red) repeat scroll 0% 0% transparent;
}
</style>
<core-header-panel mode="standard" id="core_header_panel">
<core-toolbar id="core_toolbar">
<div id="div">
<h1 id="h1">Presentacion</h1>
</div>
</core-toolbar>
<section id="section">
<section id="section1" center>
<core-icon-button id="core_icon_button" theme="core-light-theme">¿Qué es polymer?</core-icon-button>
<core-icon-button id="core_icon_button1" theme="core-light-theme">¿Cómo instalar?</core-icon-button>
<core-icon-button id="core_icon_button2" theme="core-light-theme">¿Cómo se usa?</core-icon-button>
<core-icon-button id="core_icon_button3" theme="core-light-theme">Uso de Poymer</core-icon-button>
</section>
<core-animated-pages id="core_animated_pages" notap>
</core-animated-pages>
</section>
</core-header-panel>
</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