| 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 /** | 5 /** |
| 6 * @fileoverview | 6 * @fileoverview |
| 7 * Common styles for Settings pages. | 7 * Common styles for Settings pages. |
| 8 */ | 8 */ |
| 9 #section { | 9 #section { |
| 10 @apply(--shadow-elevation-4dp); | 10 @apply(--shadow-elevation-4dp); |
| 11 background-color: white; | 11 background-color: white; |
| 12 height: 100%; | 12 height: 100%; |
| 13 margin-bottom: 16px; | 13 margin-bottom: 16px; |
| 14 overflow: hidden; |
| 14 width: 605px; | 15 width: 605px; |
| 15 } | 16 } |
| 16 | 17 |
| 17 #header { | 18 #header { |
| 18 @apply(--layout-horizontal); | 19 @apply(--layout-horizontal); |
| 19 @apply(--layout-center); | 20 @apply(--layout-center); |
| 20 background-color: #f8f8f8; | 21 background-color: #f8f8f8; |
| 21 border-bottom: 1px solid rgba(0, 0, 0, .1); | 22 border-bottom: 1px solid rgba(0, 0, 0, .1); |
| 22 padding: 16px; | 23 padding: 16px; |
| 23 } | 24 } |
| 24 | 25 |
| 25 #header iron-icon { | 26 #header iron-icon { |
| 26 -webkit-padding-end: 16px; | 27 -webkit-padding-end: 16px; |
| 27 color: rgba(0, 0, 0, .87); | 28 color: rgba(0, 0, 0, .87); |
| 28 } | 29 } |
| 29 | 30 |
| 30 #header .title { | 31 #header .title { |
| 31 @apply(--paper-font-body2); | 32 @apply(--paper-font-body2); |
| 32 } | 33 } |
| 33 | 34 |
| 34 #content-container { | 35 #content-container { |
| 35 padding: 16px; | 36 padding: 16px; |
| 36 } | 37 } |
| OLD | NEW |