Last active
August 29, 2015 14:07
-
-
Save spiner2000/9a5e1edd70f01da21bd2 to your computer and use it in GitHub Desktop.
Revisions
-
spiner2000 revised this gist
Oct 8, 2014 . 1 changed file with 5 additions and 3 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -13,7 +13,7 @@ #paper_input { left: 520px; top: 100px; position: relative; width: 340px; height: 40px; font-size: 20pt; @@ -25,11 +25,13 @@ 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> -
spiner2000 revised this gist
Oct 8, 2014 . 1 changed file with 4 additions and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -26,7 +26,10 @@ background: linear-gradient(rgb(214, 227, 231), rgb(173, 216, 230)); } </style> <div> <paper-input label="Найти..." willvalidate id="paper_input" layout vertical></paper-input> </div> </template> <script> -
spiner2000 revised this gist
Oct 8, 2014 . 1 changed file with 1 addition and 5 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -26,11 +26,7 @@ background: linear-gradient(rgb(214, 227, 231), rgb(173, 216, 230)); } </style> <paper-input label="Найти..." willvalidate id="paper_input" layout vertical></paper-input> </template> <script> -
spiner2000 revised this gist
Oct 8, 2014 . 1 changed file with 15 additions and 4 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,6 @@ <link rel="import" href="../paper-input/paper-input.html"> <polymer-element name="search-form"> <template> <style> @@ -11,15 +11,26 @@ box-sizing: border-box; } #paper_input { left: 520px; top: 100px; position: absolute; 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)); } </style> <section id="section"> <paper-input label="Найти..." willvalidate id="paper_input" layout vertical></paper-input> </section> </template> <script> -
spiner2000 revised this gist
Oct 8, 2014 . 1 changed file with 5 additions and 5 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -11,12 +11,12 @@ box-sizing: border-box; } #paper_input { left: 460px; top: 110px; position: absolute; width: 340px; height: 40px; font-size: 20pt; } </style> <paper-input label="Найти..." willvalidate id="paper_input" layout vertical></paper-input> -
spiner2000 revised this gist
Oct 8, 2014 . 1 changed file with 10 additions and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ <link rel="import" href="../paper-input/paper-input.html"> <polymer-element name="my-element"> @@ -10,7 +10,16 @@ height: 100%; box-sizing: border-box; } #paper_input { left: 560px; top: 70px; position: absolute; width: 420px; height: 20px; font-size:20pt; } </style> <paper-input label="Найти..." willvalidate id="paper_input" layout vertical></paper-input> </template> <script> -
spiner2000 created this gist
Oct 8, 2014 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,24 @@ <link rel="import" href="../polymer/polymer.html"> <polymer-element name="my-element"> <template> <style> :host { position: absolute; width: 100%; height: 100%; box-sizing: border-box; } </style> </template> <script> Polymer({ }); </script> </polymer-element>