forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcredits_css.css
75 lines (62 loc) · 1.05 KB
/
credits_css.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/* Copyright (c) 2012 The Chromium Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
body {
font-family: "Arial", "Helvetica", sans-serif;
color: #222;
font-size: 13px;
margin: 0;
direction: __MSG_@@bidi_dir__;
overflow: auto;
}
a {
text-decoration: none;
color: #15c;
cursor: pointer;
}
a:active {
color: #d14836;
}
body.show-only-selected .product:not(.selected) {
display: none;
}
.page-title {
font-size: 164%;
font-weight: bold;
}
.entries {
margin: 8px;
}
.product {
background-color: #c3d9ff;
border-radius: 5px;
margin-top: 16px;
overflow: auto;
padding: 2px;
}
.product .title {
float: left;
font-size: 110%;
font-weight: bold;
margin: 3px;
}
.right-align {
float: right;
margin: 3px 6px;
}
.licence {
background-color: #e8eef7;
border-radius: 3px;
clear: both;
padding: 16px;
}
.product:not(.selected) .licence {
display: none;
}
.licence h3 {
margin-top: 0;
}
.licence pre {
white-space: pre-wrap;
}