Skip to content

Instantly share code, notes, and snippets.

@felipeskroski-zz
Created December 12, 2014 20:31
Show Gist options
  • Save felipeskroski-zz/320c60720a61bd4efd1d to your computer and use it in GitHub Desktop.
Save felipeskroski-zz/320c60720a61bd4efd1d 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-drawer-panel/core-drawer-panel.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 320px;
height: 640px;
box-sizing: border-box;
background-color: rgb(250, 250, 250);
}
#paper_fab {
left: 1150px;
top: 520px;
}
#core_toolbar {
right: 0px;
left: 0px;
color: rgb(255, 255, 255);
fill: rgb(255, 255, 255);
top: 0px;
position: absolute;
width: 320px;
background-color: rgb(79, 125, 201);
}
#core_card {
position: absolute;
width: 300px;
height: 300px;
border-radius: 2px;
box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px;
left: 10px;
top: 70px;
background-color: rgb(255, 255, 255);
}
#core_drawer_panel {
right: 0px;
bottom: 0px;
left: 0px;
top: 0px;
position: absolute;
}
#section1 {
height: 100%;
box-sizing: border-box;
left: 390px;
top: 90px;
position: absolute;
background-color: rgb(221, 221, 221);
}
</style>
<core-toolbar id="core_toolbar" horizontal layout>
<core-icon-button icon="menu" id="core_icon_button"></core-icon-button>
<div id="div" flex>Toolbar</div>
</core-toolbar>
<core-card id="core_card" layout vertical></core-card>
<core-drawer-panel transition selected="drawer" id="core_drawer_panel" touch-action>
</core-drawer-panel>
<section id="section1" main></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