Skip to content

Instantly share code, notes, and snippets.

@nicksarafa
Created July 2, 2014 03:57
Show Gist options
  • Save nicksarafa/17487779c7a20a03dd52 to your computer and use it in GitHub Desktop.
Save nicksarafa/17487779c7a20a03dd52 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="../core-menu/core-submenu.html">
<link rel="import" href="../paper-tabs/paper-tabs.html">
<link rel="import" href="../paper-tabs/paper-tab.html">
<link rel="import" href="../core-icons/core-icons.html">
<link rel="import" href="../core-icon/core-icon.html">
<link rel="import" href="../core-input/core-input.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
top: 0px;
left: 0px;
}
#notification_alert {
left: 1350px;
top: 570px;
}
#core_selector {
width: 100%;
height: 50px;
left: 1120px;
top: 590px;
}
#core_tooltip {
left: 1190px;
top: 550px;
}
#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_toolbar {
color: rgb(255, 255, 255);
background-color: rgb(79, 125, 201);
}
#core_menu {
font-size: 16px;
}
#paper_tabs {
width: 480px;
color: rgb(255, 255, 255);
box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 2px;
background-color: rgb(0, 188, 212);
}
#paper_button {
left: 1160px;
top: 440px;
}
#ace_element {
width: 400px;
height: 300px;
left: 1230px;
top: 510px;
}
#core_menu1 {
font-size: 16px;
}
#core_input {
padding: 15px;
}
#core_icon {
height: 24px;
width: 24px;
}
</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="Calender" valueattr="label" selectedindex="0" id="core_menu" theme="core-light-theme">
<core-item label="Calender" icon="settings" id="core_item" horizontal center layout active></core-item>
<core-item label="Saves" icon="settings" id="core_item1" horizontal center layout></core-item>
</core-menu>
</core-header-panel>
<div id="div" tool>PAÜSE Prototype</div>
<paper-tabs selected="1" selectedindex="1" id="paper_tabs">
<paper-tab id="paper_tab">Saves</paper-tab>
<paper-tab id="paper_tab1" active>New/Edit</paper-tab>
<paper-tab id="paper_tab2">Active</paper-tab>
</paper-tabs>
<core-menu selected="0" id="core_menu1">
</core-menu>
<core-icon icon="search" id="core_icon"></core-icon>
<core-input placeholder="Type something..." id="core_input"></core-input>
</core-scaffold>
</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