blob: 6ae1b08e2bc5348005718288748d3bdb465d2c0a (
plain) (
blame)
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
75
|
body {
font-family: sans-serif;
background: white;
}
blockquote.body {
padding: 6px 0px;
margin: 0px 0px;
}
div.line, div.lastline {
position: relative;
}
div.line {
border-left: 0.1em solid #6185a0;
}
span.lineconn {
position: absolute;
height: 0.5em;
width: 1em;
border-bottom: 0.1em solid #6185a0;
}
div.lastline > span.lineconn {
border-left: 0.1em solid #6185a0;
}
span.linebody {
position: relative;
}
div.line > span.linebody {
left: 1.1em;
}
div.lastline > span.linebody {
left: 1.2em;
}
em.storeref
{
color: #500000;
position: relative;
width: 100%;
}
em.storeref:hover
{
background-color: #eeeeee;
}
*.popup {
display: none;
/* background: url('http://losser.st-lab.cs.uu.nl/~mbravenb/menuback.png') repeat; */
background: #ffffcd;
border: solid #555555 1px;
position: absolute;
top: 0em;
left: 0em;
margin: 0;
padding: 0;
z-index: 100;
}
em.storeref:hover span.popup {
display: inline;
}
|