Last active
August 29, 2015 14:13
-
-
Save Ry-Nomad/737ec247990b7149f895 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-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-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> | |
#section { | |
width: 420px; | |
height: 630px; | |
border: 5px solid rgb(204, 204, 204); | |
left: 1280px; | |
top: 460px; | |
} | |
#core_scaffold { | |
position: absolute; | |
top: 0px; | |
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(79, 125, 201); | |
} | |
#core_menu { | |
font-size: 16px; | |
} | |
#paper_ripple { | |
width: 300px; | |
height: 300px; | |
left: 1500px; | |
top: 640px; | |
} | |
#core_scroll_header_panel { | |
width: 380px; | |
height: 460px; | |
left: 1340px; | |
top: 500px; | |
} | |
#core_animated_pages { | |
width: 420px; | |
height: 582px; | |
overflow: hidden; | |
left: 930px; | |
top: 440px; | |
position: absolute; | |
background-color: rgb(238, 238, 238); | |
} | |
#core_submenu { | |
left: 1270px; | |
top: 530px; | |
} | |
#core_menu1 { | |
font-size: 16px; | |
left: 1430px; | |
top: 550px; | |
} | |
#core_drawer_panel { | |
position: absolute; | |
top: 600px; | |
right: 0px; | |
bottom: 0px; | |
left: 1250px; | |
} | |
#core_header_panel1 { | |
width: 300px; | |
height: 400px; | |
left: -10px; | |
top: 340px; | |
position: absolute; | |
} | |
#core_toolbar1 { | |
color: rgb(255, 255, 255); | |
background-color: rgb(79, 125, 201); | |
} | |
#section3 { | |
height: 1000px; | |
background: linear-gradient(rgb(214, 227, 231), rgb(173, 216, 230)); | |
} | |
</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="Item2" valueattr="label" selectedindex="1" id="core_menu" theme="core-light-theme"> | |
<core-item id="core_item" label="Item1" horizontal center layout></core-item> | |
<core-item id="core_item1" label="Item2" horizontal center layout active></core-item> | |
</core-menu> | |
</core-header-panel> | |
<core-header-panel mode="standard" id="core_header_panel1"> | |
<core-toolbar id="core_toolbar1"> | |
<core-icon-button icon="menu" id="core_icon_button"></core-icon-button> | |
<div id="div1">Files</div> | |
</core-toolbar> | |
<section id="section3"></section> | |
</core-header-panel> | |
<div id="div" tool>NDN Peer Chat</div> | |
<core-animated-pages selectedindex="0" notap id="core_animated_pages"> | |
<section id="section" layout horizontal center center-justified active> | |
</section> | |
<section id="section1"> | |
</section> | |
<section id="section2"> | |
</section> | |
</core-animated-pages> | |
</core-scaffold> | |
</template> | |
<script> | |
Polymer({ | |
}); | |
</script> | |
</polymer-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment