OLD | NEW |
---|---|
1 /* Copyright (c) 2017 The WebRTC project authors. All Rights Reserved. | 1 /* Copyright (c) 2017 The WebRTC project authors. All Rights Reserved. |
2 * | 2 * |
3 * Use of this source code is governed by a BSD-style license | 3 * Use of this source code is governed by a BSD-style license |
4 * that can be found in the LICENSE file in the root of the source | 4 * that can be found in the LICENSE file in the root of the source |
5 * tree. An additional intellectual property rights grant can be found | 5 * tree. An additional intellectual property rights grant can be found |
6 * in the file PATENTS. All contributing project authors may | 6 * in the file PATENTS. All contributing project authors may |
7 * be found in the AUTHORS file in the root of the source tree. | 7 * be found in the AUTHORS file in the root of the source tree. |
8 */ | 8 */ |
9 | 9 |
10 body{ | 10 body{ |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
51 | 51 |
52 .noise-desc{ | 52 .noise-desc{ |
53 display: inline-block; | 53 display: inline-block; |
54 margin-right: 0.3em; | 54 margin-right: 0.3em; |
55 border: 1px solid #555; | 55 border: 1px solid #555; |
56 color: #555; | 56 color: #555; |
57 background-color: #EEE; | 57 background-color: #EEE; |
58 padding: 1px; | 58 padding: 1px; |
59 font-size: 0.8em; | 59 font-size: 0.8em; |
60 } | 60 } |
61 | |
62 .inspector{ | |
janssonWebRTC
2017/03/02 10:19:32
Declarations should be sorted in alphabetical orde
AleBzk
2017/03/02 11:06:10
Done.
| |
63 display: block; | |
64 position: fixed; | |
65 top: 1em; | |
66 right: 1em; | |
67 padding: 0.5em; | |
68 border: 3px solid #000; | |
69 background-color: #FFF; | |
70 } | |
71 | |
72 .inspector .property{ | |
73 margin-bottom: 1em; | |
74 } | |
75 | |
76 .inspector .property .name{ | |
77 font-weight: bold; | |
78 } | |
79 | |
80 .inspector .property .value{ | |
81 padding-left: 0.5em; | |
82 } | |
83 | |
84 .inspector .buttons{ | |
85 margin-top: 1em; | |
86 } | |
87 | |
88 .inspector .buttons button{ | |
89 margin: 0 0.25em; | |
90 } | |
OLD | NEW |