Skip to content

Instantly share code, notes, and snippets.

@nronnei
Last active August 29, 2015 14:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nronnei/ad82a3719ac0f43c817f to your computer and use it in GitHub Desktop.
Save nronnei/ad82a3719ac0f43c817f to your computer and use it in GitHub Desktop.
designer
<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="../paper-button/paper-button.html">
<link rel="import" href="../core-icons/core-icons.html">
<link rel="import" href="../core-icon/core-icon.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#core_scroll_header_panel {
width: 380px;
height: 460px;
left: 1120px;
top: 390px;
}
#core_scaffold {
position: absolute;
top: 0px;
right: 0px;
bottom: 0px;
left: 0px;
width: 100%;
height: 100%;
}
#core_header_panel {
background-color: rgb(255, 255, 255);
}
#core_toolbar1 {
color: rgb(255, 255, 255);
background-color: rgb(79, 125, 201);
}
#section {
left: 0px;
top: 0px;
position: absolute;
width: 100%;
height: 100%;
padding: 10px;
background-color: rgb(211, 211, 211);
}
#core_card {
border-radius: 2px;
box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px;
height: 10%;
background-color: rgb(255, 255, 255);
}
#paper_button {
top: 3px;
background-color: rgb(206, 36, 6);
}
#core_card1 {
border-radius: 2px;
box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px;
height: 20%;
position: relative;
top: 10px;
background-color: rgb(255, 255, 255);
}
#core_menu_button {
left: 1130px;
top: 460px;
}
#core_icon {
position: absolute;
top: 0px;
left: 325px;
}
</style>
<core-scaffold drawerwidth="350px" id="core_scaffold">
<core-header-panel mode="scroll" id="core_header_panel" navigation start five flex>
<core-toolbar id="core_toolbar1">
</core-toolbar>
<section id="section" class="dirResult">
<core-card id="core_card" layout vertical twelve flex>
<paper-button raised id="paper_button" vertical layout start center-justified twelve flex>Reset</paper-button>
</core-card>
<core-card id="core_card1" layout vertical twelve flex>
<core-icon icon="close" id="core_icon" class="close button" one flex></core-icon>
</core-card>
</section>
</core-header-panel>
<div id="div1" tool>Title</div>
</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