Home | History | Annotate | Download | only in static
      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 h1 {
      6   text-align: center;
      7 }
      8 
      9 .error-message {
     10   color: red;
     11   font-size: large;
     12 }
     13 
     14 .btn,
     15 .url {
     16   color: #333333;
     17   background-color: #ffffff;
     18   padding: 6px 12px;
     19   font-size: 14px;
     20   border: 1px solid #cccccc;
     21   border-radius: 4px;
     22 }
     23 
     24 .btn:hover,
     25 .btn:focus {
     26   background-color: #ebebeb;
     27 }
     28 
     29 #view-div {
     30   margin: 35px;
     31 }
     32 
     33 #graph-div {
     34   float: left;
     35   height: 600px;
     36   width: 1024px;
     37 }
     38 
     39 #info-div {
     40   float: left;
     41   margin-left: 50px;
     42 }
     43 
     44 ul.jqtree-tree .jqtree-title {
     45   color: #333333;
     46   font-size: small;
     47 }
     48 
     49 #category-menu {
     50   box-shadow: 0 4px 16px rgba(0,0,0,0.2);
     51   outline: 1px solid rgba(0,0,0,0.2);
     52   overflow: auto;
     53   padding-bottom: 15px;
     54   padding-left: 15px;
     55   width: 240px;
     56 }
     57 
     58 #subs-dropdown {
     59   background: rgb(255, 255, 255);
     60   box-shadow: 0 4px 16px rgba(0,0,0,0.2);
     61   display: none;
     62   margin-top: 10px;
     63   outline: 1px solid rgba(0,0,0,0.2);
     64   overflow: auto;
     65   padding-bottom: 15px;
     66   padding-left: 15px;
     67   position: fixed;
     68   width: 240px;
     69 }