| 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 display: flex; |
| 9 align-items: stretch; |
| 10 width: 500px; |
| 11 align-self: center; |
| 12 padding: 10px; |
| 13 } |
| 14 |
| 15 .timeline-landing-page .timeline-perspective-header-bar { |
| 16 display: flex; |
| 17 } |
| 18 |
| 19 .timeline-landing-page .timeline-perspective-header input[type=radio] { |
| 20 display: none; |
| 21 } |
| 22 |
| 23 .timeline-landing-page .timeline-perspective-header label { |
| 24 display: inline-block; |
| 25 cursor: pointer; |
| 26 position: relative; |
| 27 padding: 6px 16px; |
| 28 font-size: 15px; |
| 29 border-bottom: 2px solid #eee; |
| 30 } |
| 31 |
| 32 .timeline-landing-page .timeline-perspective-header label:hover { |
| 33 background-color: rgba(0, 0, 0, 0.05); |
| 34 } |
| 35 |
| 36 .timeline-landing-page .timeline-perspective-header input:checked + label { |
| 37 border-bottom-color: #3E82F7; |
| 38 } |
| 39 |
| 40 .timeline-landing-page .timeline-perspective-body { |
| 41 display: flex; |
| 42 flex-direction: column; |
| 43 align-items: flex-start; |
| 44 line-height: 1.5; |
| 45 margin: 12px 16px; |
| 46 white-space: pre-line; |
| 47 } |
| 48 |
| 49 .timeline-landing-page .timeline-perspective-body > div { |
| 50 margin-bottom: 12px; |
| 51 } |
| 52 |
| 53 .timeline-landing-page .timeline-perspective-footer button { |
| 54 width: 80px; |
| 55 height: 26px; |
| 56 margin: 0 16px; |
| 57 } |
| 58 |
| 59 .timeline-landing-page .recording-setting { |
| 60 display: flex; |
| 61 flex-direction: row; |
| 62 align-items: flex-start; |
| 63 margin-bottom: 2px !important; |
| 64 } |
| 65 |
| 66 .timeline-landing-page .recording-setting input { |
| 67 margin-left: 0; |
| 68 margin-right: 8px; |
| 69 } |
| 70 |
| 71 .timeline-landing-page .recording-setting label { |
| 72 width: 100px; |
| 73 } |
| 74 |
| 75 .timeline-landing-page .recording-setting-description { |
| 76 color: #999; |
| 77 width: 350px; |
| 78 } |
| OLD | NEW |