Skip to content

Instantly share code, notes, and snippets.

@avinashcodes
Last active August 29, 2015 14:08
Show Gist options
  • Select an option

  • Save avinashcodes/ca4890a9a17e16d2f391 to your computer and use it in GitHub Desktop.

Select an option

Save avinashcodes/ca4890a9a17e16d2f391 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../polymer/polymer.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#core_drawer_panel {
position: absolute;
top: 60px;
right: 0px;
bottom: 0px;
left: 10px;
width: 100%;
height: 100%;
}
#section {
box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px;
background-color: rgb(250, 250, 250);
}
#section1 {
height: 100%;
box-sizing: border-box;
background-color: rgb(221, 221, 221);
}
#core_scroll_header_panel {
width: 100%;
height: 100%;
left: 0px;
top: 0px;
position: absolute;
}
core-scroll-header-panel::shadow #headerBg {
background-image: url(http://bestwallpaperhd.com/wp-content/uploads/2014/02/Jet-Plane-HD-Wallpaper.jpg);
}
core-scroll-header-panel::shadow #condensedHeaderBg {
background-color: rgb(79, 125, 201);
}
#core_toolbar {
color: rgb(241, 241, 241);
fill: rgb(241, 241, 241);
background-color: transparent;
}
#paper_item {
left: 10px;
top: 200px;
position: absolute;
width: 210px;
height: 50px;
color: rgb(79, 125, 201);
}
</style>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment