OLD | NEW |
---|---|
(Empty) | |
1 /* Copyright (c) 2012 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 body { | |
7 overflow: auto; | |
8 } | |
9 | |
10 body.show-only-selected .product:not(.selected) { | |
11 display: none; | |
12 } | |
13 | |
14 .page-title { | |
15 font-size: 164%; | |
16 font-weight: bold; | |
17 } | |
18 | |
19 .entries { | |
20 margin: 8px; | |
21 } | |
22 | |
23 .product { | |
24 background-color: #c3d9ff; | |
25 border-radius: 5px; | |
26 margin-top: 16px; | |
27 overflow: auto; | |
28 padding: 2px; | |
29 } | |
30 | |
31 .product .title { | |
32 float: left; | |
33 font-size: 110%; | |
34 font-weight: bold; | |
35 margin: 3px; | |
36 } | |
37 | |
38 .right-align { | |
39 float: right; | |
40 margin: 3px 6px; | |
41 } | |
42 | |
43 .licence { | |
44 background-color: #e8eef7; | |
45 border-radius: 3px; | |
46 clear: both; | |
47 padding: 16px; | |
48 } | |
49 | |
50 .product:not(.selected) .licence { | |
51 display: none; | |
52 } | |
53 | |
54 .licence h3 { | |
55 margin-top: 0; | |
56 } | |
57 | |
58 .licence pre { | |
59 white-space: pre-wrap; | |
60 } | |
OLD | NEW |