Skip to content

Instantly share code, notes, and snippets.

@teolemon
Last active August 29, 2015 14:08
Show Gist options
  • Save teolemon/beb6040094a81170f87d to your computer and use it in GitHub Desktop.
Save teolemon/beb6040094a81170f87d 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="../paper-input/paper-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;
}
#core_menu {
font-size: 16px;
left: 900px;
top: 460px;
}
#core_toolbar {
right: 0px;
left: -20px;
color: rgb(255, 255, 255);
fill: rgb(255, 255, 255);
top: 0px;
position: absolute;
height: 200px;
background-color: rgb(56, 213, 255);
}
#core_tooltip {
left: 830px;
top: 500px;
}
#paper_fab {
left: 758px;
top: 170px;
position: absolute;
}
#paper_input {
left: 28px;
top: 40px;
position: absolute;
}
#paper_input1 {
left: 28px;
top: 110px;
position: absolute;
}
#paper_input2 {
left: 398px;
top: 40px;
position: absolute;
}
</style>
<core-toolbar id="core_toolbar">
<div id="div" flex></div>
<paper-input label="Employer..." willvalidate id="paper_input" layout vertical></paper-input>
<paper-input label="Job Title..." willvalidate id="paper_input1" layout vertical></paper-input>
<paper-input label="Description..." willvalidate multiline id="paper_input2" layout vertical></paper-input>
<paper-fab icon="work" id="paper_fab" end></paper-fab>
</core-toolbar>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment