blob: 4ef1cd77b24e42ae8a3eb34ea7f7fa94214d7754 (
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
71
72
73
74
75
76
77
78
79
80
81
82
83
|
body
{
font-family:'arial';
}
/* The outer div */
div.chemdata
{
border: 1px solid rgb(50,80,150);
/*border: 1px solid rgb(0,0,0); */
/* width:400px;*/
overflow:visible;;
}
/* The header div */
div.chemdata div
{
background-image:url('header.png');
}
/* The table inside the header div */
div.chemdata div table
{
margin:0px;
width:100%;
color:rgb(240,240,240);
font-weight:bold;
}
/* The td inside the header table */
div.chemdata div table td
{
padding-left:4px;
}
/* The second td inside the header table */
div.chemdata div table td+td
{
text-align:right;
font-size:80%;
}
/* The table containing the characterstics */
table.characterstics
{
background-image:url('characteristics.png');
background-repeat:repeat-y;
width:100%;
}
/* The td's inside the characterstics-table */
table.characterstics td
{
padding:3px;
padding-left:5px;
vertical-align:middle;
text-align:center;
}
table.isotopes td
{
border-left:1px #000000 solid;
border-bottom:1px #000000 solid;
}
table.isotopes
{
border-right:1px #000000 solid;
border-top:1px #000000 solid;
}
/* The second td inside the characterstics-table (text) */
table.characterstics td+td
{
text-align:left;
}
/* Bold text inside the td's of the characterstics-table */
table.characterstics td b
{
color:rgb(80,80,80);
}
|