Last active
August 29, 2015 14:07
-
-
Save spiner2000/9a5e1edd70f01da21bd2 to your computer and use it in GitHub Desktop.
designer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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