Skip to content

Instantly share code, notes, and snippets.

@brianfeister
Last active August 29, 2015 14:11
Show Gist options
  • Save brianfeister/4815b432578036f6e905 to your computer and use it in GitHub Desktop.
Save brianfeister/4815b432578036f6e905 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../ace-element/ace-element.html">
<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="../core-icon-button/core-icon-button.html">
<link rel="import" href="../core-toolbar/core-toolbar.html">
<link rel="import" href="../core-scroll-header-panel/core-scroll-header-panel.html">
<polymer-element name="my-element">
<template>
<style>
:host {
box-sizing: border-box;
opacity: 1;
}
#ace_element {
width: 400px;
height: 300px;
left: 260px;
top: 340px;
position: absolute;
}
#ace_element1 {
width: 400px;
height: 300px;
left: 240px;
top: 230px;
position: absolute;
}
#core_animated_pages {
width: 420px;
height: 582px;
overflow: hidden;
left: 230px;
top: 160px;
position: absolute;
background-color: rgb(238, 238, 238);
}
#core_animated_pages1 {
width: 420px;
height: 582px;
overflow: hidden;
background-color: rgb(238, 238, 238);
}
#core_card {
position: absolute;
width: 300px;
height: 300px;
border-radius: 2px;
box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px;
left: 500px;
top: 750px;
background-color: rgb(255, 255, 255);
}
#core_scroll_header_panel {
width: 380px;
height: 460px;
}
#core_toolbar {
color: rgb(241, 241, 241);
fill: rgb(241, 241, 241);
background-color: rgb(66, 133, 244);
}
#core_icon_button {
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
}
#section6 {
height: 5000px;
background: linear-gradient(rgb(214, 227, 231), rgb(173, 216, 230));
}
#core_scroll_header_panel1 {
width: 380px;
height: 460px;
}
#core_toolbar1 {
color: rgb(241, 241, 241);
fill: rgb(241, 241, 241);
background-color: rgb(66, 133, 244);
}
#section7 {
height: 5000px;
background: linear-gradient(rgb(214, 227, 231), rgb(173, 216, 230));
}
#core_icon_button6 {
left: 380px;
top: 830px;
position: absolute;
}
</style>
<ace-element id="ace_element">function test() {
var x = true;
}</ace-element>
<ace-element id="ace_element1">function test() {
var x = true;
}</ace-element>
<core-animated-pages selectedindex="0" notap id="core_animated_pages">
<section id="section" layout horizontal center center-justified active>
<core-animated-pages selectedindex="0" notap id="core_animated_pages1">
<section id="section3" layout horizontal center center-justified active>
<core-scroll-header-panel headermargin="128" condenses headerheight="192" id="core_scroll_header_panel">
<core-toolbar id="core_toolbar" class="tall" vertical layout wrap-reverse>
<core-icon-button icon="arrow-back" id="core_icon_button"></core-icon-button>
<div id="div" flex></div>
<core-icon-button icon="search" id="core_icon_button1"></core-icon-button>
<core-icon-button icon="more-vert" id="core_icon_button2"></core-icon-button>
<div id="div1" class="bottom indent">Hmmm</div>
<core-scroll-header-panel headermargin="128" condenses headerheight="192" id="core_scroll_header_panel1">
<core-toolbar id="core_toolbar1" class="tall">
<core-icon-button icon="arrow-back" id="core_icon_button3"></core-icon-button>
<div id="div2" flex></div>
<core-icon-button icon="search" id="core_icon_button4"></core-icon-button>
<core-icon-button icon="more-vert" id="core_icon_button5"></core-icon-button>
<div id="div3" class="bottom indent">Title</div>
</core-toolbar>
<section id="section7" content></section>
</core-scroll-header-panel>
</core-toolbar>
<section id="section6" content></section>
</core-scroll-header-panel>
</section>
<section id="section4">
</section>
<section id="section5">
</section>
</core-animated-pages>
</section>
<section id="section1">
</section>
<section id="section2">
</section>
</core-animated-pages>
<core-card id="core_card" layout vertical></core-card>
<core-icon-button icon="menu" id="core_icon_button6" theme="core-light-theme"></core-icon-button>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment