Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(199)

Side by Side Diff: appengine/config_service/ui/src/config-ui/config-ui.html

Issue 2923973003: Added base template for config ui. (Closed)
Patch Set: Better base template with clearer purpose Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698