Skip to content

Instantly share code, notes, and snippets.

@64BitAsura
Created August 9, 2014 09:48
Show Gist options
  • Save 64BitAsura/2010a82fca6b5e1cbb8a to your computer and use it in GitHub Desktop.
Save 64BitAsura/2010a82fca6b5e1cbb8a to your computer and use it in GitHub Desktop.
designer
<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">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
top: 0px;
left: 0px;
}
#core_header_panel {
width: 100%;
height: 100%;
left: 0px;
top: 0px;
position: absolute;
display: block;
}
#core_toolbar {
height: 12%;
color: rgb(255, 255, 255);
background-color: rgb(79, 125, 201);
}
#section {
height: 78% !important;
background: linear-gradient(rgb(214, 227, 231), rgb(173, 216, 230));
}
</style>
<core-header-panel mode="standard" id="core_header_panel">
<core-toolbar id="core_toolbar">
</core-toolbar>
<section id="section"></section>
</core-header-panel>
</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