Skip to content

Instantly share code, notes, and snippets.

@arguser
Last active August 29, 2015 14:07
Show Gist options
  • Save arguser/835a370d48475759a707 to your computer and use it in GitHub Desktop.
Save arguser/835a370d48475759a707 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">
<link rel="import" href="../core-input/core-input.html">
<link rel="import" href="../core-icons/core-icons.html">
<link rel="import" href="../core-icons/av-icons.html">
<link rel="import" href="../paper-fab/paper-fab.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#smoothie_chart {
left: 1780px;
top: 630px;
}
#core_scroll_header_panel {
width: 380px;
height: 460px;
left: 1750px;
top: 610px;
}
#core_drawer_panel {
position: absolute;
top: 620px;
right: 0px;
bottom: 0px;
left: 1630px;
}
#core_header_panel {
width: 100%;
height: 100%;
left: 0px;
top: 0px;
position: absolute;
}
#core_toolbar {
color: rgb(255, 255, 255);
background-color: rgb(79, 125, 201);
}
#section {
height: 1000px;
background: linear-gradient(rgb(214, 227, 231), rgb(173, 216, 230));
}
#core_item {
left: 1650px;
top: 800px;
}
#cool_clock {
width: 400px;
height: 300px;
left: 1750px;
top: 700px;
}
#ace_element {
width: 400px;
height: 300px;
left: 1630px;
top: 520px;
}
#chart_js {
width: 300px;
height: 200px;
left: 1720px;
top: 610px;
}
#notification_alert {
left: 1680px;
top: 650px;
}
#core_animated_pages {
width: 420px;
height: 582px;
overflow: hidden;
left: 1690px;
top: 610px;
background-color: rgb(238, 238, 238);
}
#core_menu {
font-size: 16px;
left: 1720px;
top: 670px;
}
#core_submenu {
left: 1630px;
top: 740px;
}
#core_selector {
width: 100%;
height: 50px;
left: 1770px;
top: 640px;
}
#core_toolbar1 {
right: 0px;
left: 1720px;
color: rgb(255, 255, 255);
fill: rgb(255, 255, 255);
top: 790px;
background-color: rgb(79, 125, 201);
}
#core_tooltip {
left: 1780px;
top: 730px;
}
#core_card {
position: relative;
width: 300px;
height: 300px;
border-top-left-radius: 2px;
border-top-right-radius: 2px;
border-bottom-right-radius: 2px;
border-bottom-left-radius: 2px;
box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px;
display: none;
background-color: rgb(255, 255, 255);
}
#core_input {
padding: 15px;
}
#core_icon {
left: 1740px;
top: 770px;
}
#core_input1 {
padding: 15px;
}
#section1 {
width: 420px;
height: 630px;
border: 5px solid rgb(204, 204, 204);
left: 1760px;
top: 640px;
}
#paper_ripple {
width: 300px;
height: 300px;
left: 1690px;
top: 760px;
}
#paper_fab {
overflow: visible;
}
</style>
<core-header-panel mode="standard" id="core_header_panel">
<core-toolbar id="core_toolbar">
<div id="div">Header</div>
<core-icon-button active icon="add" id="core_icon_button" on-tap="{{ newEvent }}" theme="core-light-theme" class="selected" center end-justified></core-icon-button>
</core-toolbar>
<section id="section">
<core-card id="core_card" layout vertical center>
<core-input willvalidate placeholder="Event Name" inputvalue="test" value="test" id="core_input"></core-input>
<core-input willvalidate placeholder="Event Date" inputvalue="2014-10-07" value="2014-10-07" type="date" id="core_input1"></core-input>
<paper-fab icon="check" id="paper_fab"></paper-fab>
</core-card>
</section>
</core-header-panel>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment