blob: 7f211d3592bcdd525f2215402198b418032703dd (
plain)
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
|
h1
{
font-family: monospace;
font-weight: normal;
font-size: 2.074em;
line-height: 1.4em;
margin: 1.6em 0 .4em 0;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
h1:first-child {margin-top: .6em;}
/* Since it is a link to itself, it will always be visited. */
h1 a:visited {color: #006fbf;}
h1 a:hover, h1 a:active {color: #0087e7; text-decoration: none;}
h2
{
font-style: italic;
font-weight: normal;
font-size: 1.32em;
line-height: 1.4em;
margin: .4em 0 .4em 0;
}
/*
* Certificate details.
*/
p.certfp
{
font-size: 0.74em;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
pre.certpem
{
font-size: 0.97em;
white-space: pre;
margin: .5em 0 .5em 0;
overflow: hidden;
text-overflow: ellipsis;
}
|