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
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#aboutPMDialogContainer {
width: 700px;
height: 410px;
}
#aboutVersionBox {
font-family: Arial, helvetica;
height: 38 px;
}
#aboutVersion {
text-align: center;
font-size: 18px;
font-weight: bold;
margin: 4px;
}
#distribution,
#distributionId {
text-align: center;
font-size: 14px;
font-weight: bold;
display: none;
margin-top: 0;
margin-bottom: 0;
}
#aboutTextBox {
font-family: Arial, helvetica;
font-size: 14px;
margin: 5px 20px;
padding: 4px 10px 0px;
border-radius: 3px;
color: black;
background-color: rgba(240, 240, 240, .6);
}
#aboutLinkBox {
font-family: Arial, helvetica;
}
.text-credits {
margin: 5px 0px;
}
.text-center {
text-align: center;
}
.text-link,
.text-link:focus {
margin: 0px;
padding: 0px;
}
.bottom-link,
.bottom-link:focus {
text-align: center;
text-decoration: none !important;
padding: 4px;
border-radius: 3px;
color: #244C8A;
background-color: rgba(240, 240, 240, .7);
margin: 0 40px;
transition: background-color 0.5s ease-out;
}
.bottom-link:hover {
background-color: rgba(240, 240, 255, .95);
}
|