blob: 396d29e15ffa578e76013dafb73a092f304f5e7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/* Copyright 2015 The Chromium Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file. */
:host {
align-items: center;
background: rgb(63, 85, 102);
color: white;
display: flex;
height: 56px;
}
#search-field {
-webkit-padding-end: 10px;
}
#title {
-webkit-margin-start: 24px;
flex: 1;
font-size: 107.7%;
font-weight: normal;
margin-bottom: 0;
margin-top: 0;
}
|