blob: 74a9eab84773b146f67ac1e5a9faae2a72e3a809 (
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
70
|
/**
* Styles for rtl
*
* needed to fix some of the RTL theme problems
*
* @package webtrees
* @subpackage Themes
* @version $Id$
*/
body {
direction: rtl;
text-align: right;
}
html {
direction: rtl;
white-space: normal;
}
#footer {
text-align: center;
}
.person_box, .person_boxF, .person_boxNN {
text-align: right;
}
.footer {
text-align: left;
direction: rtl;
}
.image {
margin-right: 0px;
margin-left: 15px;
}
#header {
width: 100%;
text-align: right;
direction: rtl;
caption-side: left;
display: table;
}
.blockhc {
padding-left: 15px;
padding-right: 5px;
}
.blockh2, .blockhc, .door {
direction: rtl;
}
.door dd {
float: right;
}
.icon, .adminicon {
border: none;
padding-left: 5pt;
padding-right: 0pt;
}
.blockh1 {
background-image: url(images/right1B.gif);
}
.blockh3 {
background-image: url(images/right3.gif);
}
#login_block .blockh1 {
background-image: url(images/right1G.gif);
}
#logout_block .blockh1 {
background-image: url(images/right1R.gif);
}
|