OLD | NEW |
1 /* Copyright 2015 The Chromium Authors. All rights reserved. | 1 /* Copyright 2015 The Chromium Authors. All rights reserved. |
2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
3 * found in the LICENSE file. */ | 3 * found in the LICENSE file. */ |
4 | 4 |
5 :host { | 5 :host { |
6 display: inline-block; | 6 display: inline-block; |
7 text-align: left; | 7 text-align: left; |
8 } | 8 } |
9 | 9 |
10 #container { | 10 #container { |
(...skipping 18 matching lines...) Expand all Loading... |
29 cursor: pointer; | 29 cursor: pointer; |
30 display: inline-block; | 30 display: inline-block; |
31 } | 31 } |
32 | 32 |
33 #icon.open { | 33 #icon.open { |
34 background-color: rgb(25, 27, 29); | 34 background-color: rgb(25, 27, 29); |
35 border-radius: 4px; | 35 border-radius: 4px; |
36 } | 36 } |
37 | 37 |
38 #arrow { | 38 #arrow { |
39 margin-left: -18px; | 39 margin-left: -12px; |
40 padding-right: 4px; | 40 padding-right: 4px; |
41 } | 41 } |
42 | 42 |
43 h1 { | 43 h1 { |
44 border-bottom: 1px solid rgb(219, 219, 219); | 44 border-bottom: 1px solid rgb(219, 219, 219); |
45 color: rgb(33, 33, 33); | 45 color: rgb(33, 33, 33); |
| 46 font-size: 77.8%; |
| 47 font-weight: 500; |
46 margin: 0; | 48 margin: 0; |
47 padding: 16px; | 49 padding: 14px 28px; |
48 @apply(--paper-font-title); | |
49 } | 50 } |
OLD | NEW |