OLD | NEW |
| (Empty) |
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 | |
3 * found in the LICENSE file. */ | |
4 | |
5 html, | |
6 body, | |
7 #container { | |
8 margin: 0; | |
9 padding: 0; | |
10 width: 100%; | |
11 height: 100%; | |
12 | |
13 font-family: 'Lucida Grande', sans-serif; | |
14 } | |
15 | |
16 table { | |
17 border-collapse: collapse; | |
18 } | |
19 td { | |
20 border: 1px solid black; | |
21 word-wrap: break-word; | |
22 max-width: 200px; | |
23 } | |
24 thead { | |
25 color: rgb(50,50,50); | |
26 font-size: 1.1em; | |
27 } | |
28 | |
29 h1, | |
30 h2, | |
31 h3 { | |
32 color: rgb(50,50,50); | |
33 } | |
34 | |
35 #container { | |
36 display: flex; | |
37 flex-direction: row; | |
38 flex-wrap: wrap; | |
39 justify-content: space-between; | |
40 align-items: flex-start; | |
41 align-content: stretch; | |
42 } | |
43 | |
44 #container > * { | |
45 padding: 0; | |
46 padding-left: 25px; | |
47 margin: 0; | |
48 } | |
49 | |
50 #list-wrapper { | |
51 display: flex; | |
52 flex-direction: column; | |
53 justify-content: space-between; | |
54 align-items: flex-start; | |
55 align-content: stretch; | |
56 } | |
57 | |
58 #player-list-wrapper, | |
59 #audio-stream-list-wrapper { | |
60 flex-grow: 1; | |
61 align-self: stretch; | |
62 min-width: 200px; | |
63 max-width: 200px; | |
64 overflow: auto; | |
65 } | |
66 | |
67 #player-list-wrapper ul, | |
68 #player-list-wrapper li, | |
69 #audio-stream-list-wrapper ul, | |
70 #audio-stream-list-wrapper li { | |
71 margin: 0; | |
72 padding: 0; | |
73 list-style-type: none; | |
74 } | |
75 #list-wrapper button { | |
76 margin: 0; | |
77 padding: 0; | |
78 width: 170px; | |
79 } | |
80 | |
81 #property-wrapper, | |
82 #log-wrapper { | |
83 display:block; | |
84 flex-grow: 0.5; | |
85 align-self: stretch; | |
86 overflow: auto; | |
87 } | |
88 | |
89 #log-wrapper > thead { | |
90 position: fixed; | |
91 } | |
92 | |
93 #graphs li { | |
94 list-style-type: none; | |
95 } | |
OLD | NEW |