OLD | NEW |
---|---|
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 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 body { | 5 body { |
6 color: rgb(48, 57, 66); | 6 color: rgb(48, 57, 66); |
7 font-size: 13px; | 7 font-size: 13px; |
8 margin: 0; | 8 margin: 0; |
9 min-width: 47em; | 9 min-width: 47em; |
10 padding: 20px 20px 65px 0; | |
11 } | 10 } |
12 | 11 |
13 .hidden { | 12 .hidden { |
14 display: none !important; | 13 display: none !important; |
15 } | 14 } |
16 | 15 |
17 img { | 16 img { |
18 flex-shrink: 0; | 17 flex-shrink: 0; |
19 height: 16px; | 18 height: 16px; |
20 padding-left: 2px; | 19 padding-left: 2px; |
21 padding-right: 5px; | 20 padding-right: 5px; |
22 vertical-align: top; | 21 vertical-align: top; |
23 width: 16px; | 22 width: 16px; |
24 } | 23 } |
25 | 24 |
26 #container { | 25 #container { |
27 -webkit-flex-direction: row; | 26 -webkit-flex-direction: row; |
28 display: -webkit-flex; | 27 display: -webkit-flex; |
29 } | 28 } |
30 | 29 |
31 #navigation { | 30 #navigation { |
31 position: fixed; | |
pfeldman
2015/02/24 15:41:26
You should instead have a header and a body with o
robwu
2015/02/24 21:57:47
Done.
| |
32 top: 20px; | |
32 width: 150px; | 33 width: 150px; |
33 } | 34 } |
34 | 35 |
35 #content { | 36 #content { |
36 -webkit-flex: 1; | 37 -webkit-flex: 1; |
38 margin-left: 150px; | |
37 } | 39 } |
38 | 40 |
39 #caption { | 41 #caption { |
40 color: rgb(92, 97, 102); | 42 color: rgb(92, 97, 102); |
41 font-size: 150%; | 43 font-size: 150%; |
42 padding-bottom: 10px; | 44 padding-bottom: 10px; |
43 padding-left: 20px; | 45 padding-left: 20px; |
44 } | 46 } |
45 | 47 |
46 #serviceworker-internals { | 48 #serviceworker-internals { |
(...skipping 16 matching lines...) Expand all Loading... | |
63 font: inherit; | 65 font: inherit; |
64 line-height: 17px; | 66 line-height: 17px; |
65 margin: 6px 0; | 67 margin: 6px 0; |
66 padding: 0 2px; | 68 padding: 0 2px; |
67 } | 69 } |
68 | 70 |
69 .tab-header:not(.selected) > button { | 71 .tab-header:not(.selected) > button { |
70 color: #999; | 72 color: #999; |
71 } | 73 } |
72 | 74 |
75 #content > div { | |
76 padding: 20px 20px 65px 0; | |
77 } | |
73 #content > div:not(.selected) { | 78 #content > div:not(.selected) { |
74 display: none; | 79 display: none; |
75 } | 80 } |
76 | 81 |
77 .content-header { | 82 .content-header { |
78 border-bottom: 1px solid #eee; | 83 border-bottom: 1px solid #eee; |
79 font-size: 150%; | 84 font-size: 150%; |
80 padding-bottom: 10px; | 85 padding-bottom: 10px; |
81 } | 86 } |
82 | 87 |
(...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
402 } | 407 } |
403 | 408 |
404 #port-forwarding-config-buttons { | 409 #port-forwarding-config-buttons { |
405 align-items: center; | 410 align-items: center; |
406 display: flex; | 411 display: flex; |
407 } | 412 } |
408 | 413 |
409 #port-forwarding-config-buttons > label { | 414 #port-forwarding-config-buttons > label { |
410 flex-grow: 1 | 415 flex-grow: 1 |
411 } | 416 } |
OLD | NEW |