Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <link rel="import" href="../../bower_components/polymer/polymer.html"> | |
|
Sergey Berezin
2017/06/08 00:05:59
Please add a license header here too. See how it's
| |
| 2 <link rel="import" href="../../bower_components/app-layout/app-layout.html"> | |
| 3 <link rel="import" href="../../bower_components/paper-search/paper-search-bar.ht ml"> | |
| 4 | |
| 5 <dom-module id="config-ui"> | |
| 6 <template> | |
| 7 <style> | |
| 8 html, body { | |
| 9 margin: 0; | |
| 10 background: #f1f1f1; | |
| 11 } | |
| 12 | |
| 13 app-toolbar { | |
| 14 background-color: #efefef; | |
| 15 color: #232323; | |
| 16 } | |
| 17 | |
| 18 app-header { | |
| 19 @apply --layout-fixed-top; | |
| 20 } | |
| 21 | |
| 22 .title { | |
| 23 padding-left: 1%; | |
| 24 padding-bottom: 0.5%; | |
| 25 font-size: 150%; | |
| 26 font-family: sans-serif; | |
| 27 } | |
| 28 | |
| 29 .search { | |
| 30 padding-top: 15%; | |
| 31 } | |
| 32 | |
| 33 paper-search-bar { | |
| 34 border-style: solid; | |
| 35 border-width: 2px; | |
| 36 width: 40%; | |
| 37 margin: auto; | |
| 38 } | |
| 39 </style> | |
| 40 <app-header reveals> | |
| 41 <app-toolbar> | |
| 42 <image src="../../images/google.png"/> | |
| 43 <div class="title" main-title>Configuration Service</div> | |
| 44 </app-toolbar> | |
| 45 </app-header> | |
| 46 | |
| 47 <center class="search"> | |
| 48 <paper-search-bar><paper-search-bar> | |
| 49 </center> | |
| 50 </template> | |
| 51 | |
| 52 <script> | |
| 53 Polymer({ | |
| 54 is: 'config-ui' | |
| 55 }); | |
| 56 </script> | |
| 57 </dom-module> | |
| OLD | NEW |