Home | History | Annotate | Download | only in media
      1 /* Copyright (c) 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 
      6 .peer-connection-dump-root {
      7   font-size: 0.8em;
      8   padding-bottom: 3px;
      9 }
     10 
     11 .update-log-container {
     12   float: left;
     13   width: 50em;
     14   overflow: auto;
     15 }
     16 
     17 .ssrc-info-block {
     18   color: #999;
     19   font-size: 0.8em;
     20 }
     21 
     22 .stats-graph-container {
     23   clear: both;
     24   margin: 0.5em 0 0.5em 0;
     25 }
     26 
     27 .stats-graph-container-heading {
     28   font-size: 0.8em;
     29   font-weight: bold;
     30 }
     31 
     32 .stats-graph-sub-container {
     33   float: left;
     34   margin: 0.5em;
     35 }
     36 
     37 .stats-graph-sub-container > div {
     38   float: left;
     39 }
     40 
     41 .stats-graph-sub-container > div:first-child {
     42   float: none;
     43 }
     44 
     45 .stats-table-container {
     46   float: left;
     47   padding: 0 0 0 0;
     48   width: 50em;
     49   overflow: auto;
     50 }
     51 
     52 .stats-table-container >div:first-child {
     53   font-size: 0.8em;
     54   font-weight: bold;
     55   text-align: center;
     56   padding: 0 0 1em 0;
     57 }
     58 
     59 body {
     60   font-family: 'Lucida Grande', sans-serif;
     61 }
     62 
     63 table {
     64   border: none;
     65   margin: 0 1em 1em 0;
     66 }
     67 
     68 td {
     69   border: none;
     70   font-size: 0.8em;
     71   padding: 0 1em 0.5em 0;
     72   min-width: 10em;
     73   word-break: break-all;
     74 }
     75 
     76 table > tr {
     77   vertical-align: top;
     78 }
     79 
     80 th {
     81   border: none;
     82   font-size: 0.8em;
     83   padding: 0 0 0.5em 0;
     84 }
     85 
     86 .tab-head {
     87   background-color: rgb(220, 220, 220);
     88   margin: 10px 5px 0 5px;
     89   text-decoration: underline;
     90   cursor: pointer;
     91   display: inline-block;
     92   width: 32%;
     93 }
     94 .active-tab-head {
     95   background-color: turquoise;
     96   font-weight: bold;
     97 }
     98 .tab-body {
     99   border: 1px solid turquoise;
    100   border-top-width: 3px;
    101   padding: 0 10px 500px 10px;
    102   display: none;
    103 }
    104 .active-tab-body {
    105   display: block;
    106 }
    107