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: block; | 6 display: block; |
7 } | 7 } |
8 | 8 |
9 :host(.cr-collapse-closed) { | 9 .card { |
10 display: none; | 10 background-color: rgb(249, 249, 249); |
| 11 border-radius: 2px; |
| 12 box-shadow: -2px 2px 3px 0 rgb(194, 197, 199); |
| 13 margin-bottom: 20px; |
| 14 padding: 10px; |
11 } | 15 } |
| 16 |
| 17 h1 { |
| 18 margin: 0; |
| 19 } |
OLD | NEW |