Last active
August 29, 2015 14:09
-
-
Save laurenancona/7247d7855f6f9eef2231 to your computer and use it in GitHub Desktop.
designer
This file contains 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-icon-button/core-icon-button.html"> | |
<link rel="import" href="../core-toolbar/core-toolbar.html"> | |
<link rel="import" href="../core-input/core-input.html"> | |
<link rel="import" href="../google-map/google-map.html"> | |
<link rel="import" href="../paper-tabs/paper-tabs.html"> | |
<link rel="import" href="../paper-tabs/paper-tab.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"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; | |
width: 100%; | |
height: 100%; | |
box-sizing: border-box; | |
} | |
#google_map { | |
width: 100%; | |
height: 100%; | |
display: block; | |
left: 0px; | |
top: 60px; | |
position: absolute; | |
} | |
#google_map_search1 { | |
left: 1000px; | |
top: 440px; | |
position: absolute; | |
} | |
#google_map_search2 { | |
left: 1010px; | |
top: 390px; | |
position: absolute; | |
} | |
#google_map_search3 { | |
left: 1050px; | |
top: 390px; | |
position: absolute; | |
} | |
#core_toolbar { | |
right: 0px; | |
left: 0px; | |
color: rgb(255, 255, 255); | |
fill: rgb(255, 255, 255); | |
top: 0px; | |
position: absolute; | |
height: 60px; | |
background-color: rgb(168, 191, 18); | |
} | |
#div { | |
position: relative; | |
} | |
#input { | |
padding: 15px; | |
left: 910px; | |
top: 320px; | |
position: absolute; | |
opacity: 1; | |
} | |
#core_scroll_header_panel { | |
width: 380px; | |
height: 460px; | |
left: 660px; | |
top: 450px; | |
position: absolute; | |
} | |
#section { | |
width: 100%; | |
height: 100%; | |
left: 0px; | |
top: 60px; | |
position: absolute; | |
} | |
#paper_tabs { | |
color: rgb(255, 255, 255); | |
box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 2px; | |
background-color: rgb(0, 188, 212); | |
} | |
#section2 { | |
left: 500px; | |
top: 192px; | |
position: absolute; | |
} | |
#core_animated_pages { | |
width: 320px; | |
height: 100%; | |
overflow: hidden; | |
background-color: rgb(238, 238, 238); | |
} | |
#section1 { | |
position: absolute; | |
margin: 20px; | |
} | |
</style> | |
<core-toolbar id="core_toolbar"> | |
<core-icon-button icon="menu" id="core_icon_button"></core-icon-button> | |
<div id="div" flex center horizontal layout>PARKADELPHIA</div> | |
</core-toolbar> | |
<input id="input" placeholder="search..." is="core-input"> | |
<google-map latitude="39.76498910632879" longitude="-74.5267463867187" id="google_map"></google-map> | |
<section id="section" layout vertical class="timeFrame"> | |
<paper-tabs noink nobar selected="1" selectedindex="1" id="paper_tabs" horizontal center layout> | |
<paper-tab id="paper_tab" inline flex center-center horizontal layout>NOW</paper-tab> | |
<paper-tab id="paper_tab1" inline flex center-center horizontal layout active>LATER</paper-tab> | |
</paper-tabs> | |
<core-animated-pages selectedindex="0" notap id="core_animated_pages"> | |
<section id="selectOptions" layout horizontal active start-justified start> Select Options</section> | |
<section id="section2"> | |
</section> | |
<section id="section3"> | |
</section> | |
</core-animated-pages> | |
</section> | |
</template> | |
<script> | |
Polymer({ | |
}); | |
</script> | |
</polymer-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment