| OLD | NEW |
| (Empty) | |
| 1 /* |
| 2 * Copyright (c) 2016 The Chromium Authors. All rights reserved. |
| 3 * Use of this source code is governed by a BSD-style license that can be |
| 4 * found in the LICENSE file. |
| 5 */ |
| 6 |
| 7 .timeline-landing-page { |
| 8 align-self: center; |
| 9 max-width: 500px; |
| 10 font-size: 13px; |
| 11 } |
| 12 |
| 13 .timeline-landing-page .tabbed-pane { |
| 14 padding: 10px 0 0 0; |
| 15 } |
| 16 |
| 17 .timeline-landing-page .timeline-perspective-body { |
| 18 align-items: stretch; |
| 19 line-height: 1.5; |
| 20 padding: 12px; |
| 21 white-space: pre-line; |
| 22 width: 100%; |
| 23 font-size: 12px; |
| 24 } |
| 25 |
| 26 .timeline-landing-page .timeline-perspective-body > div { |
| 27 margin-bottom: 12px; |
| 28 flex-shrink: 0; |
| 29 } |
| 30 |
| 31 .timeline-landing-page button { |
| 32 min-width: 90px; |
| 33 min-height: 26px; |
| 34 margin: 10px 0 0 0; |
| 35 } |
| 36 |
| 37 .timeline-landing-page .recording-setting { |
| 38 display: flex; |
| 39 align-items: flex-start; |
| 40 margin-bottom: 2px !important; |
| 41 } |
| 42 |
| 43 .timeline-landing-page .recording-setting label { |
| 44 flex: 0 0 100px; |
| 45 } |
| 46 |
| 47 .timeline-landing-page .recording-setting-description { |
| 48 color: #999; |
| 49 } |
| OLD | NEW |