OLD | NEW |
1 /* Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 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 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 auto; |
| 31 width: 70%; |
| 32 } |
| 33 |
5 #graph-div { | 34 #graph-div { |
6 width: 1024px; | 35 width: 1024px; |
7 height: 600px; | 36 height: 600px; |
8 margin-top: 30px; | |
9 margin-left: 50px; | |
10 float: left; | 37 float: left; |
11 } | 38 } |
12 | 39 |
13 #info-div { | 40 #info-div { |
14 width: 240px; | 41 width: 240px; |
15 height: 600px; | 42 height: 600px; |
16 margin-top: 35px; | 43 float: left; |
17 margin-left: 50px; | 44 margin-left: 50px; |
18 float: left; | |
19 box-shadow: 0 4px 16px rgba(0,0,0,0.2); | 45 box-shadow: 0 4px 16px rgba(0,0,0,0.2); |
20 outline: 1px solid rgba(0,0,0,0.2); | 46 outline: 1px solid rgba(0,0,0,0.2); |
21 overflow: auto; | 47 overflow: auto; |
22 } | 48 } |
23 | 49 |
| 50 ul.jqtree-tree .jqtree-title { |
| 51 color: #333333; |
| 52 font-size: small; |
| 53 } |
| 54 |
24 #category-menu { | 55 #category-menu { |
25 padding-left: 15px; | 56 padding-left: 15px; |
26 } | 57 } |
27 | 58 |
28 #subs-dropdown { | 59 #subs-dropdown { |
29 padding-left: 15px; | 60 padding-left: 15px; |
30 } | 61 } |
OLD | NEW |