blob: fc2a87f1f344c22bcbce626cf4017290ec927cf9 (
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
|
body{
font-family:Arial, Helvetica, sans-serif;
font-size: 11pt;
margin:0;
color:#61615C;
background-image:url(images/ishtar-bg.jpg);
background-repeat:no-repeat;
background-position:right top;
}
div#header{
width:100%;
text-align:center;
font-size: 0.9em;
background-color: #EEE;
border-bottom:1px solid #CCC;
margin-bottom:10px;
}
div.form {
margin-left:auto;
margin-right:auto;
padding:1em;
display:block;
width:500px;
background-color: #EEE;
border:1px solid #CCC;
border-radius:10px;
text-align:center;
}
div.form table{
padding:0.2em;
margin-left:auto;
margin-right:auto;
}
div.form table th{
text-align:left;
}
.info{
margin-left:auto;
margin-right:auto;
padding:1em;
display:block;
width:500px;
}
.info p{
padding:0;
margin:0.2em;
}
|