Skip to content

Instantly share code, notes, and snippets.

@spiner2000
Last active August 29, 2015 14:07
Show Gist options
  • Save spiner2000/9a5e1edd70f01da21bd2 to your computer and use it in GitHub Desktop.
Save spiner2000/9a5e1edd70f01da21bd2 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../paper-input/paper-input.html">
<polymer-element name="search-form">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#paper_input {
left: 520px;
top: 100px;
position: relative;
width: 340px;
height: 40px;
font-size: 20pt;
}
#section {
height: 1000px;
left: 1110px;
top: 520px;
position: absolute;
background: linear-gradient(rgb(214, 227, 231), rgb(173, 216, 230));
}
.main{
}
</style>
<div class="main">
<paper-input label="Найти..." willvalidate id="paper_input" layout vertical></paper-input>
</div>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment