Created
July 7, 2014 07:13
-
-
Save jmatsushita/6c3c239868339ba6de8c to your computer and use it in GitHub Desktop.
designer
This file contains hidden or 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-scaffold/core-scaffold.html"> | |
<link rel="import" href="../core-header-panel/core-header-panel.html"> | |
<link rel="import" href="../core-menu/core-menu.html"> | |
<link rel="import" href="../core-item/core-item.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-menu/core-submenu.html"> | |
<link rel="import" href="../core-field/core-field.html"> | |
<link rel="import" href="../core-icon/core-icon.html"> | |
<link rel="import" href="../core-input/core-input.html"> | |
<link rel="import" href="../core-icons/core-icons.html"> | |
<link rel="import" href="../paper-slider/paper-slider.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; | |
width: 100%; | |
height: 100%; | |
box-sizing: border-box; | |
color: rgb(0, 0, 0); | |
} | |
#google_map { | |
width: 400px; | |
height: 400px; | |
display: block; | |
left: 370px; | |
top: 180px; | |
position: absolute; | |
} | |
#core_animated_pages { | |
width: 420px; | |
height: 582px; | |
overflow: hidden; | |
left: 300px; | |
top: 330px; | |
position: absolute; | |
background-color: rgb(238, 238, 238); | |
} | |
#core_scaffold { | |
position: absolute; | |
top: -10px; | |
right: 0px; | |
bottom: 0px; | |
left: 0px; | |
} | |
#core_header_panel { | |
background-color: rgb(255, 255, 255); | |
} | |
#core_toolbar { | |
color: rgb(255, 255, 255); | |
background-color: rgb(214, 214, 214); | |
} | |
#core_menu { | |
font-size: 16px; | |
} | |
#core_icon { | |
height: 24px; | |
width: 24px; | |
} | |
#divyeah { | |
color: rgb(255, 255, 255); | |
background-color: rgb(214, 214, 214); | |
} | |
#core_card { | |
border-top-left-radius: 2px; | |
border-top-right-radius: 2px; | |
border-bottom-right-radius: 2px; | |
border-bottom-left-radius: 2px; | |
box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px; | |
background-color: rgb(255, 255, 255); | |
} | |
</style> | |
<core-scaffold id="core_scaffold"> | |
<core-header-panel mode="seamed" id="core_header_panel" navigation flex> | |
<core-toolbar id="core_toolbar"></core-toolbar> | |
<core-menu selected="1" valueattr="label" selectedindex="1" id="core_menu" theme="core-light-theme"> | |
<core-field id="core_field" icon="search" theme="core-light-theme" center horizontal layout> | |
<core-icon icon="search" id="core_icon"></core-icon> | |
<core-input placeholder="text input" id="core_input" flex></core-input> | |
</core-field> | |
</core-menu> | |
<paper-slider immediatevalue="48" value="48" id="paper_slider"></paper-slider> | |
<core-item label="Item1" icon="settings" id="core_item" horizontal center layout></core-item> | |
<core-item label="Item2" icon="settings" id="core_item1" horizontal center layout></core-item> | |
</core-header-panel> | |
<div id="divyeah" tool>Title</div> | |
</core-scaffold> | |
</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