blob: c32b1525cfd5bc830b79396e1a0ba363c8c8141e (
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
/* migration page CSS; author: Pavel Zuna <pzuna@redhat.com> */
body
{
font-family: Verdana;
text-align: center;
}
p
{
font-size: 0.8em;
font-weight: bold;
}
.migration_form
{
margin-left: auto;
margin-right: auto;
text-align: center;
width: 18em;
}
.migration_form_inner
{
border: solid 1px #284775;
font-size: 0.8em;
padding: 4px;
}
.migration_form_title
{
background: #5d7b9d;
color: #f7f6f3;
font-weight: bold;
height: 1.7em;
margin-bottom: 0.3em;
padding-top: 0.4em;
text-align: center;
}
.migration_form_input
{
color: #5d7b9d;
font-size: 1em;
text-align: right;
}
.migration_form_input em
{
font-style: normal;
text-decoration: underline;
}
.migration_form_submit
{
text-align: center;
}
.migration_form_submit input
{
background: #5d7b9d;
border: solid 1px #284775;
color: #f7f6f3;
height: 1.7em;
margin-top: 0.3em;
}
/* end of file */
|