Skip to content

Instantly share code, notes, and snippets.

@jnorthrup
Created August 23, 2014 06:14
Show Gist options
  • Save jnorthrup/55adb2eac2ec51870699 to your computer and use it in GitHub Desktop.
Save jnorthrup/55adb2eac2ec51870699 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-field/core-field.html">
<link rel="import" href="../core-icon/core-icon.html">
<link rel="import" href="../core-input/core-input.html">
<link rel="import" href="../core-icons/core-icons.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#core_header_panel {
width: 300px;
height: 400px;
left: 140px;
top: 130px;
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));
}
</style>
<core-header-panel mode="standard" id="core_header_panel">
<core-toolbar id="core_toolbar">
<core-icon-button id="core_icon_button" icon="menu"></core-icon-button>
<div id="div">Header</div>
</core-toolbar>
<section id="section">
<core-field id="core_field" icon="search" theme="core-light-theme" center horizontal layout>
<core-icon id="core_icon" icon="search"></core-icon>
<core-input placeholder="Company's name" id="core_input" flex></core-input>
</core-field>
<core-field id="core_field1" icon="search" theme="core-light-theme" center horizontal layout>
<core-icon id="core_icon1" icon="search"></core-icon>
<core-input placeholder="Phone #" required pattern="([+]([0-9]{1,2}))?([-]([0-9]{3,4})){2,4}" invalid id="core_input1" flex class="invalid"></core-input>
</core-field>
<core-field id="core_field2" icon="search" theme="core-light-theme" center horizontal layout>
<core-icon id="core_icon2" icon="search"></core-icon>
<core-input placeholder="Email" id="core_input2" flex></core-input>
</core-field>
<core-field id="core_field3" icon="search" theme="core-light-theme" center horizontal layout>
<core-icon id="core_icon3" icon="search"></core-icon>
<core-input placeholder="Address" multiline id="core_input3" flex></core-input>
</core-field>
</section>
</core-header-panel>
</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