-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
74 lines (62 loc) · 1.2 KB
/
index.css
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
/* taken from: https://www.w3.org/Style/Examples/007/leaders.en.html */
.idx_list {
max-width: clac( 100% - 30px);
list-style: none;
overflow: hidden;
padding: 0;
margin: 75px 50px 0 50px;
}
.idx_row {
cursor: pointer;
padding: 0;
margin: 0;
line-height: 136%;
position:relative;
}
.idx_row:hover {
text-decoration: underline;
}
.ltr .idx_row {
text-align: left;
}
.rtl .idx_row {
text-align: right;
}
.idx_row:before {
width: 0;
white-space: nowrap;
overflow: visible;
content: ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ";
}
.idx_row:hover:before {
font-weight:bold;
}
.ltr .idx_list li:before {
float: left;
}
.rtl .idx_list li:before {
float: right;
}
.idx_name,
.idx_number {
background: #fff;
}
.idx_number {
position:absolute;
}
.ltr .idx_name {
padding-right: 5px;
}
.rtl .idx_name {
padding-left: 5px;
}
.ltr .idx_number {
text-align: right;
padding-left: 5px;
right:0;
}
.rtl .idx_number {
text-align: left;
padding-right: 5px;
left:0;
}