OLD | NEW |
1 /* Copyright 2013 The Chromium Authors. All rights reserved. | 1 /* Copyright 2013 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 html { | 6 html { |
7 height: 100%; | 7 height: 100%; |
8 } | 8 } |
9 | 9 |
10 body { | 10 body { |
(...skipping 12 matching lines...) Expand all Loading... |
23 } | 23 } |
24 | 24 |
25 .title-bar { | 25 .title-bar { |
26 -webkit-align-items: center; | 26 -webkit-align-items: center; |
27 -webkit-app-region: drag; | 27 -webkit-app-region: drag; |
28 background-color: #fff; | 28 background-color: #fff; |
29 box-shadow: 0 1px #d0d0d0; | 29 box-shadow: 0 1px #d0d0d0; |
30 color: rgb(80, 80, 82); | 30 color: rgb(80, 80, 82); |
31 display: -webkit-flex; | 31 display: -webkit-flex; |
32 font-size: 15px; | 32 font-size: 15px; |
33 height: 48px; | 33 min-height: 48px; |
34 } | 34 } |
35 | 35 |
36 .title-bar #page-title { | 36 .title-bar #page-title { |
37 -webkit-flex: 1 1 auto; | 37 -webkit-flex: 1 1 auto; |
38 -webkit-margin-start: 20px; | 38 -webkit-margin-start: 20px; |
39 } | 39 } |
40 | 40 |
41 .title-bar .button-bar { | 41 .title-bar .button-bar { |
42 -webkit-flex: 0 1 auto; | 42 -webkit-flex: 0 1 auto; |
43 } | 43 } |
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
211 height: 50px; | 211 height: 50px; |
212 margin-bottom: 20px; | 212 margin-bottom: 20px; |
213 margin-top: 120px; | 213 margin-top: 120px; |
214 } | 214 } |
215 | 215 |
216 .srt-body { | 216 .srt-body { |
217 font-size: 14px; | 217 font-size: 14px; |
218 line-height: 24px; | 218 line-height: 24px; |
219 margin: 0 40px; | 219 margin: 0 40px; |
220 } | 220 } |
OLD | NEW |