Skip to content

Instantly share code, notes, and snippets.

@MWalid
Last active August 29, 2015 14:06
Show Gist options
  • Save MWalid/2346a27c86bfe7089301 to your computer and use it in GitHub Desktop.
Save MWalid/2346a27c86bfe7089301 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="../core-icon-button/core-icon-button.html">
<link rel="import" href="../core-toolbar/core-toolbar.html">
<link rel="import" href="../core-header-panel/core-header-panel.html">
<link rel="import" href="../google-map/google-map.html">
<polymer-element name="dalilak-app">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#core_header_panel {
width: 100%;
height: 100%;
position: absolute;
}
#core_toolbar {
color: rgb(255, 255, 255);
background-color: rgb(0, 191, 165);
}
#section {
height: 1000px;
background: linear-gradient(rgb(214, 227, 231), rgb(96, 125, 139));
}
#core_animated_pages {
width: 100%;
height: 100%;
}
#core_scroll_header_panel {
width: 380px;
height: 460px;
left: 490px;
top: 36px;
position: absolute;
}
#core_toolbar1 {
color: rgb(241, 241, 241);
fill: rgb(241, 241, 241);
background-color: rgb(66, 133, 244);
}
#section4 {
height: 5000px;
background: linear-gradient(rgb(214, 227, 231), rgb(173, 216, 230));
}
#div1 {
height: 100%;
width: 100%;
overflow: hidden;
left: 90px;
top: 16px;
position: absolute;
}
#app {
left: 30px;
top: 16px;
position: absolute;
}
#google_map {
width: 100%;
height: 600px;
display: block;
}
</style>
<core-animated-pages selectedindex="0" notap id="core_animated_pages" layout flex>
<core-header-panel mode="standard" id="core_header_panel" active>
<core-toolbar id="core_toolbar" horizontal layout reverse>
<div id="div">دليلك إلى حلقات المساجد القرآنية</div>
</core-toolbar>
<section id="section">
<google-map id="google_map"></google-map>
</section>
</core-header-panel>
</core-animated-pages>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment